commit ccecc0bc6b9ea407a749362f864c3efb5c255b96 Author: khantey1998 Date: Tue Jun 16 10:45:41 2026 +0700 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf6df67 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +case_lab_result.sql \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7eeab3f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +FROM php:8.2-fpm + +WORKDIR /var/www + +# System dependencies +RUN apt-get update && apt-get install -y \ + git \ + curl \ + zip \ + unzip \ + libpng-dev \ + libonig-dev \ + libxml2-dev + +# PHP Extensions +RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd +RUN chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache + +# Install Composer +COPY --from=composer:latest /usr/bin/composer /usr/bin/composer + +CMD ["php-fpm"] \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/autopush.sh b/autopush.sh new file mode 100644 index 0000000..d036326 --- /dev/null +++ b/autopush.sh @@ -0,0 +1,5 @@ +#!/bin/bash +git add . +git commit -m "Auto push from script" +git push origin main + diff --git a/dashboard/.editorconfig b/dashboard/.editorconfig new file mode 100644 index 0000000..a186cd2 --- /dev/null +++ b/dashboard/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[compose.yaml] +indent_size = 4 diff --git a/dashboard/.env.example b/dashboard/.env.example new file mode 100644 index 0000000..c0660ea --- /dev/null +++ b/dashboard/.env.example @@ -0,0 +1,65 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +APP_LOCALE=en +APP_FALLBACK_LOCALE=en +APP_FAKER_LOCALE=en_US + +APP_MAINTENANCE_DRIVER=file +# APP_MAINTENANCE_STORE=database + +# PHP_CLI_SERVER_WORKERS=4 + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=sqlite +# DB_HOST=127.0.0.1 +# DB_PORT=3306 +# DB_DATABASE=laravel +# DB_USERNAME=root +# DB_PASSWORD= + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=log +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database +# CACHE_PREFIX= + +MEMCACHED_HOST=127.0.0.1 + +REDIS_CLIENT=phpredis +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=log +MAIL_SCHEME=null +MAIL_HOST=127.0.0.1 +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +VITE_APP_NAME="${APP_NAME}" diff --git a/dashboard/.gitattributes b/dashboard/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/dashboard/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/dashboard/.gitignore b/dashboard/.gitignore new file mode 100644 index 0000000..6e5e7ec --- /dev/null +++ b/dashboard/.gitignore @@ -0,0 +1,27 @@ +*.log +.DS_Store +.env +.env.backup +.env.production +.phpactor.json +.phpunit.result.cache +/.fleet +/.idea +/.nova +/.phpunit.cache +/.vscode +/.zed +/auth.json +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/storage/app/* +/storage/framework/* +/storage/logs/* +/storage/pail +/vendor +Homestead.json +Homestead.yaml +Thumbs.db diff --git a/dashboard/README.md b/dashboard/README.md new file mode 100644 index 0000000..0165a77 --- /dev/null +++ b/dashboard/README.md @@ -0,0 +1,59 @@ +

Laravel Logo

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. You can also check out [Laravel Learn](https://laravel.com/learn), where you will be guided through building a modern Laravel application. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). + +### Premium Partners + +- **[Vehikl](https://vehikl.com)** +- **[Tighten Co.](https://tighten.co)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel)** +- **[DevSquad](https://devsquad.com/hire-laravel-developers)** +- **[Redberry](https://redberry.international/laravel-development)** +- **[Active Logic](https://activelogic.com)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/dashboard/app/Console/Commands/fetchSourceData.php b/dashboard/app/Console/Commands/fetchSourceData.php new file mode 100644 index 0000000..c83b25e --- /dev/null +++ b/dashboard/app/Console/Commands/fetchSourceData.php @@ -0,0 +1,39 @@ +dataRetrievalService = new DataRetrievalService(); + parent::__construct(); + } + + /** + * Execute the console command. + */ + public function handle() + { + $this->dataRetrievalService->getSurveillanceData(); + } + +} diff --git a/dashboard/app/Http/Controllers/Api/DashboardController.php b/dashboard/app/Http/Controllers/Api/DashboardController.php new file mode 100644 index 0000000..4f40631 --- /dev/null +++ b/dashboard/app/Http/Controllers/Api/DashboardController.php @@ -0,0 +1,300 @@ +service = $service; + $this->dataRetrievalService = new DataRetrievalService(); + } + + /* + |-------------------------------------------------------------------------- + | Helper: Resolve Epiweek Range + |-------------------------------------------------------------------------- + */ + + private function getEpiRange(Request $request) + { + $startYear = (int) $request->query('start_year'); + $startWeek = (int) $request->query('start_week'); + $endYear = (int) $request->query('end_year'); + $endWeek = (int) $request->query('end_week'); + + if (!$startYear || !$startWeek || !$endYear || !$endWeek) { + return null; + } + + return [ + 'startYear' => $startYear, + 'startWeek' => $startWeek, + 'endYear' => $endYear, + 'endWeek' => $endWeek + ]; + } + + + /* + |-------------------------------------------------------------------------- + | Overview Summary Cards + |-------------------------------------------------------------------------- + */ + + public function summary() + { + return response()->json($this->service->summaryCards()); + } + + + /* + |-------------------------------------------------------------------------- + | Overview Trend Chart + |-------------------------------------------------------------------------- + */ + + public function trend(Request $request) + { + $range = $this->getEpiRange($request); + + if (!$range) { + return response()->json(['error' => 'Missing epiweek range'], 400); + } + + $data = $this->service->aggregateAllPrograms( + + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ); + + return response()->json($data); + } + + + /* + |-------------------------------------------------------------------------- + | Program Dashboard + |-------------------------------------------------------------------------- + */ + + public function program(Request $request) + { + $surveillanceId = (int) $request->query('surveillance_id'); + + if (!$surveillanceId) { + return response()->json(['error' => 'Missing surveillance_id'], 400); + } + + $range = $this->getEpiRange($request); + + if (!$range) { + return response()->json(['error' => 'Missing epiweek range'], 400); + } + + $data = $this->service->programDashboardData( + $surveillanceId, + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ); + + return response()->json($data); + } + + + /* + |-------------------------------------------------------------------------- + | Province Map (Overview) + |-------------------------------------------------------------------------- + */ + + public function provinceCircles(Request $request) + { + $range = $this->getEpiRange($request); + + if (!$range) { + return response()->json(['error' => 'Missing epiweek range'], 400); + } + + $data = $this->service->provinceCircles( + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ); + + return response()->json($data); + } + + /* + |-------------------------------------------------------------------------- + | Influenza subtype distribution (Overview) + |-------------------------------------------------------------------------- + */ + + public function influenzaSubtypeDetected(Request $request) + { + $range = $this->getEpiRange($request); + + if (!$range) { + return response()->json(['error' => 'Missing epiweek range'], 400); + } + + $data = $this->service->influenzaSubtypeDetected( + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ); + + return response()->json($data); + } + + public function covidDistributedByAgeGroup(Request $request) + { + $range = $this->getEpiRange($request); + + if (!$range) { + return response()->json(['error' => 'Missing epiweek range'], 400); + } + + $data = $this->service->covidDistributedByAgeGroup( + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ); + + return response()->json($data); + } + + public function covidLineageRelativeOverTime(Request $request) + { + $range = $this->getEpiRange($request); + if (!$range) { + return response()->json(['error' => 'Missing epiweek range'], 400); + } + + $data = $this->service->covidLineageRelativeOverTime( + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ); + + return response()->json($data); + } + + public function influenzaRelativeOverTime(Request $request) + { + $range = $this->getEpiRange($request); + if (!$range) { + return response()->json(['error' => 'Missing epiweek range'], 400); + } + + $data = $this->service->influenzaRelativeOverTime( + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ); + + return response()->json($data); + } + + + public function influenzaRelativeOverTimeSequencing(Request $request) + { + $range = $this->getEpiRange($request); + if (!$range) { + return response()->json(['error' => 'Missing epiweek range'], 400); + } + + $data = $this->service->influenzaRelativeOverTimeSequencing( + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ); + + return response()->json($data); + } + + + + + + /* + |-------------------------------------------------------------------------- + | Sentinel Map + |-------------------------------------------------------------------------- + */ + + // public function sentinelMap(Request $request) + + // { + // $range = $this->getEpiRange($request); + + // if (!$range) { + // return response()->json(['error' => 'Missing epiweek range'], 400); + // } + + // return response()->json($data); + // } + + public function fetchSourceData() + { + try { + $this->dataRetrievalService->getSurveillanceData(); + return response()->json(['message' => 'Data loaded successfully!'], 200); + } catch (\Exception $e) { + return response()->json(['error' => 'Data loaded unsuccessfully!'], 400); + } + } + + /* + |-------------------------------------------------------------------------- + | Sequencing Dashboard + |-------------------------------------------------------------------------- + */ + + public function sequencing(Request $request) + { + $surveillanceId = (int) $request->query('surveillance_id'); + $range = $this->getEpiRange($request); + + if (!$surveillanceId || !$range) { + return response()->json(['error' => 'Missing parameters'], 400); + } + + return response()->json([ + 'trend' => $this->service->sequencingTrend( + $surveillanceId, + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ),'distribution' => $this->service->subtypeDistribution( + $surveillanceId, + $range['startYear'], + $range['startWeek'], + $range['endYear'], + $range['endWeek'] + ) + ]); + } + +} diff --git a/dashboard/app/Http/Controllers/Auth/AuthenticatedSessionController.php b/dashboard/app/Http/Controllers/Auth/AuthenticatedSessionController.php new file mode 100644 index 0000000..c2f8e06 --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/AuthenticatedSessionController.php @@ -0,0 +1,67 @@ +authenticate(); + + $request->session()->regenerate(); + if (!Auth::user()->is_active) { + + Auth::logout(); + + return back()->withErrors([ + 'email' => 'Account is disabled.', + ]); + + } + Auth::user()->update([ + 'last_login_at' => now() + ]); + activity_log( + 'login', + 'User logged in' + ); + + return redirect()->intended(route('dashboard', absolute: false)); + } + + /** + * Destroy an authenticated session. + */ + public function destroy(Request $request): RedirectResponse + { + Auth::guard('web')->logout(); + + $request->session()->invalidate(); + + $request->session()->regenerateToken(); + activity_log( + 'logout', + 'User logged out' + ); + + return redirect('/'); + } +} diff --git a/dashboard/app/Http/Controllers/Auth/ConfirmablePasswordController.php b/dashboard/app/Http/Controllers/Auth/ConfirmablePasswordController.php new file mode 100644 index 0000000..712394a --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/ConfirmablePasswordController.php @@ -0,0 +1,40 @@ +validate([ + 'email' => $request->user()->email, + 'password' => $request->password, + ])) { + throw ValidationException::withMessages([ + 'password' => __('auth.password'), + ]); + } + + $request->session()->put('auth.password_confirmed_at', time()); + + return redirect()->intended(route('dashboard', absolute: false)); + } +} diff --git a/dashboard/app/Http/Controllers/Auth/EmailVerificationNotificationController.php b/dashboard/app/Http/Controllers/Auth/EmailVerificationNotificationController.php new file mode 100644 index 0000000..f64fa9b --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/EmailVerificationNotificationController.php @@ -0,0 +1,24 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(route('dashboard', absolute: false)); + } + + $request->user()->sendEmailVerificationNotification(); + + return back()->with('status', 'verification-link-sent'); + } +} diff --git a/dashboard/app/Http/Controllers/Auth/EmailVerificationPromptController.php b/dashboard/app/Http/Controllers/Auth/EmailVerificationPromptController.php new file mode 100644 index 0000000..ee3cb6f --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/EmailVerificationPromptController.php @@ -0,0 +1,21 @@ +user()->hasVerifiedEmail() + ? redirect()->intended(route('dashboard', absolute: false)) + : view('auth.verify-email'); + } +} diff --git a/dashboard/app/Http/Controllers/Auth/NewPasswordController.php b/dashboard/app/Http/Controllers/Auth/NewPasswordController.php new file mode 100644 index 0000000..fc16e14 --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/NewPasswordController.php @@ -0,0 +1,63 @@ + $request]); + } + + /** + * Handle an incoming new password request. + * + * @throws ValidationException + */ + public function store(Request $request): RedirectResponse + { + $request->validate([ + 'token' => ['required'], + 'email' => ['required', 'email'], + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + ]); + + // Here we will attempt to reset the user's password. If it is successful we + // will update the password on an actual user model and persist it to the + // database. Otherwise we will parse the error and return the response. + $status = Password::reset( + $request->only('email', 'password', 'password_confirmation', 'token'), + function (User $user) use ($request) { + $user->forceFill([ + 'password' => Hash::make($request->password), + 'remember_token' => Str::random(60), + ])->save(); + + event(new PasswordReset($user)); + } + ); + + // If the password was successfully reset, we will redirect the user back to + // the application's home authenticated view. If there is an error we can + // redirect them back to where they came from with their error message. + return $status == Password::PASSWORD_RESET + ? redirect()->route('login')->with('status', __($status)) + : back()->withInput($request->only('email')) + ->withErrors(['email' => __($status)]); + } +} diff --git a/dashboard/app/Http/Controllers/Auth/PasswordController.php b/dashboard/app/Http/Controllers/Auth/PasswordController.php new file mode 100644 index 0000000..6916409 --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/PasswordController.php @@ -0,0 +1,29 @@ +validateWithBag('updatePassword', [ + 'current_password' => ['required', 'current_password'], + 'password' => ['required', Password::defaults(), 'confirmed'], + ]); + + $request->user()->update([ + 'password' => Hash::make($validated['password']), + ]); + + return back()->with('status', 'password-updated'); + } +} diff --git a/dashboard/app/Http/Controllers/Auth/PasswordResetLinkController.php b/dashboard/app/Http/Controllers/Auth/PasswordResetLinkController.php new file mode 100644 index 0000000..1bc9c11 --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/PasswordResetLinkController.php @@ -0,0 +1,45 @@ +validate([ + 'email' => ['required', 'email'], + ]); + + // We will send the password reset link to this user. Once we have attempted + // to send the link, we will examine the response then see the message we + // need to show to the user. Finally, we'll send out a proper response. + $status = Password::sendResetLink( + $request->only('email') + ); + + return $status == Password::RESET_LINK_SENT + ? back()->with('status', __($status)) + : back()->withInput($request->only('email')) + ->withErrors(['email' => __($status)]); + } +} diff --git a/dashboard/app/Http/Controllers/Auth/RegisteredUserController.php b/dashboard/app/Http/Controllers/Auth/RegisteredUserController.php new file mode 100644 index 0000000..44a3930 --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/RegisteredUserController.php @@ -0,0 +1,51 @@ +validate([ + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'lowercase', 'email', 'max:255', 'unique:'.User::class], + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + ]); + + $user = User::create([ + 'name' => $request->name, + 'email' => $request->email, + 'password' => Hash::make($request->password), + ]); + + event(new Registered($user)); + + Auth::login($user); + + return redirect(route('dashboard', absolute: false)); + } +} diff --git a/dashboard/app/Http/Controllers/Auth/VerifyEmailController.php b/dashboard/app/Http/Controllers/Auth/VerifyEmailController.php new file mode 100644 index 0000000..784765e --- /dev/null +++ b/dashboard/app/Http/Controllers/Auth/VerifyEmailController.php @@ -0,0 +1,27 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(route('dashboard', absolute: false).'?verified=1'); + } + + if ($request->user()->markEmailAsVerified()) { + event(new Verified($request->user())); + } + + return redirect()->intended(route('dashboard', absolute: false).'?verified=1'); + } +} diff --git a/dashboard/app/Http/Controllers/Controller.php b/dashboard/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..8677cd5 --- /dev/null +++ b/dashboard/app/Http/Controllers/Controller.php @@ -0,0 +1,8 @@ +firstOrFail(); + return view('dashboard.detail', compact('selected')); + } +} \ No newline at end of file diff --git a/dashboard/app/Http/Controllers/ProfileController.php b/dashboard/app/Http/Controllers/ProfileController.php new file mode 100644 index 0000000..a48eb8d --- /dev/null +++ b/dashboard/app/Http/Controllers/ProfileController.php @@ -0,0 +1,60 @@ + $request->user(), + ]); + } + + /** + * Update the user's profile information. + */ + public function update(ProfileUpdateRequest $request): RedirectResponse + { + $request->user()->fill($request->validated()); + + if ($request->user()->isDirty('email')) { + $request->user()->email_verified_at = null; + } + + $request->user()->save(); + + return Redirect::route('profile.edit')->with('status', 'profile-updated'); + } + + /** + * Delete the user's account. + */ + public function destroy(Request $request): RedirectResponse + { + $request->validateWithBag('userDeletion', [ + 'password' => ['required', 'current_password'], + ]); + + $user = $request->user(); + + Auth::logout(); + + $user->delete(); + + $request->session()->invalidate(); + $request->session()->regenerateToken(); + + return Redirect::to('/'); + } +} diff --git a/dashboard/app/Http/Middleware/RoleMiddleware.php b/dashboard/app/Http/Middleware/RoleMiddleware.php new file mode 100644 index 0000000..bf16075 --- /dev/null +++ b/dashboard/app/Http/Middleware/RoleMiddleware.php @@ -0,0 +1,28 @@ +check()) { + return redirect('/login'); + } + + if (auth()->user()->role !== $role) { + abort(403); + } + + return $next($request); + } +} \ No newline at end of file diff --git a/dashboard/app/Http/Requests/Auth/LoginRequest.php b/dashboard/app/Http/Requests/Auth/LoginRequest.php new file mode 100644 index 0000000..711e0a1 --- /dev/null +++ b/dashboard/app/Http/Requests/Auth/LoginRequest.php @@ -0,0 +1,86 @@ +|string> + */ + public function rules(): array + { + return [ + 'email' => ['required', 'string', 'email'], + 'password' => ['required', 'string'], + ]; + } + + /** + * Attempt to authenticate the request's credentials. + * + * @throws ValidationException + */ + public function authenticate(): void + { + $this->ensureIsNotRateLimited(); + + if (! Auth::attempt($this->only('email', 'password'), $this->boolean('remember'))) { + RateLimiter::hit($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => trans('auth.failed'), + ]); + } + + RateLimiter::clear($this->throttleKey()); + } + + /** + * Ensure the login request is not rate limited. + * + * @throws ValidationException + */ + public function ensureIsNotRateLimited(): void + { + if (! RateLimiter::tooManyAttempts($this->throttleKey(), 5)) { + return; + } + + event(new Lockout($this)); + + $seconds = RateLimiter::availableIn($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => trans('auth.throttle', [ + 'seconds' => $seconds, + 'minutes' => ceil($seconds / 60), + ]), + ]); + } + + /** + * Get the rate limiting throttle key for the request. + */ + public function throttleKey(): string + { + return Str::transliterate(Str::lower($this->string('email')).'|'.$this->ip()); + } +} diff --git a/dashboard/app/Http/Requests/ProfileUpdateRequest.php b/dashboard/app/Http/Requests/ProfileUpdateRequest.php new file mode 100644 index 0000000..e2202dd --- /dev/null +++ b/dashboard/app/Http/Requests/ProfileUpdateRequest.php @@ -0,0 +1,31 @@ +|string> + */ + public function rules(): array + { + return [ + 'name' => ['required', 'string', 'max:255'], + 'email' => [ + 'required', + 'string', + 'lowercase', + 'email', + 'max:255', + Rule::unique(User::class)->ignore($this->user()->id), + ], + ]; + } +} diff --git a/dashboard/app/Models/ActivityLog.php b/dashboard/app/Models/ActivityLog.php new file mode 100644 index 0000000..5c8461b --- /dev/null +++ b/dashboard/app/Models/ActivityLog.php @@ -0,0 +1,18 @@ +hasMany(SurveillanceCase::class, 'surveillance_id'); + } +} \ No newline at end of file diff --git a/dashboard/app/Models/SurveillanceCase.php b/dashboard/app/Models/SurveillanceCase.php new file mode 100644 index 0000000..1e74b8c --- /dev/null +++ b/dashboard/app/Models/SurveillanceCase.php @@ -0,0 +1,31 @@ +belongsTo(Surveillance::class, 'surveillance_id'); + } +} \ No newline at end of file diff --git a/dashboard/app/Models/User.php b/dashboard/app/Models/User.php new file mode 100644 index 0000000..749c7b7 --- /dev/null +++ b/dashboard/app/Models/User.php @@ -0,0 +1,48 @@ + */ + use HasFactory, Notifiable; + + /** + * The attributes that are mass assignable. + * + * @var list + */ + protected $fillable = [ + 'name', + 'email', + 'password', + ]; + + /** + * The attributes that should be hidden for serialization. + * + * @var list + */ + protected $hidden = [ + 'password', + 'remember_token', + ]; + + /** + * Get the attributes that should be cast. + * + * @return array + */ + protected function casts(): array + { + return [ + 'email_verified_at' => 'datetime', + 'password' => 'hashed', + ]; + } +} diff --git a/dashboard/app/Providers/AppServiceProvider.php b/dashboard/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..7714da0 --- /dev/null +++ b/dashboard/app/Providers/AppServiceProvider.php @@ -0,0 +1,28 @@ +with('programs', Surveillance::orderBy('id')->get()); + }); + } +} diff --git a/dashboard/app/Services/DashboardService.php b/dashboard/app/Services/DashboardService.php new file mode 100644 index 0000000..ce8fa74 --- /dev/null +++ b/dashboard/app/Services/DashboardService.php @@ -0,0 +1,1456 @@ +where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw("(year_data > ? OR (year_data = ? AND week_data >= ?))", [$startYear, $startYear, $startWeek]) + ->whereRaw("(year_data < ? OR (year_data = ? AND week_data <= ?))", [$endYear, $endYear, $endWeek]); + }) + ->distinct('lab_code') + ->count('lab_code'); + } + + /* + |-------------------------------------------------------------------------- + | Overview Summary Cards + |-------------------------------------------------------------------------- + */ + + public function summaryCards() + { + $programs = Surveillance::orderBy('id')->get(); + $results = []; + + $today = date('Y-m-d'); + + $currentFrom = date('Y-m-d', strtotime('-6 days')); + $currentTo = $today; + + $prevFrom = date('Y-m-d', strtotime('-13 days')); + $prevTo = date('Y-m-d', strtotime('-7 days')); + + foreach ($programs as $program) { + + $current = SurveillanceCase::where('surveillance_id', $program->id) + ->whereBetween('case_date', [$currentFrom, $currentTo]) + ->count(); + + $previous = SurveillanceCase::where('surveillance_id', $program->id) + ->whereBetween('case_date', [$prevFrom, $prevTo]) + ->count(); + + $percentChange = $previous > 0 + ? round((($current - $previous) / $previous) * 100, 1) + : ($current > 0 ? 100 : 0); + + $results[] = [ + 'surveillance_id' => $program->id, + 'code' => $program->code, + 'current_total' => $current, + 'previous_total' => $previous, + 'percent_change' => $percentChange + ]; + } + + return $results; + } + + + /* + |-------------------------------------------------------------------------- + | Program Summary + |-------------------------------------------------------------------------- + */ + + public function afiTrend( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ) { + + $rows = CaseLabResult::join( + 'surveillance_cases', + 'case_lab_results.lab_code', + '=', + 'surveillance_cases.lab_code' + ) + + ->where( + 'surveillance_cases.surveillance_id', + $surveillanceId + ) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + + $q->whereRaw( + "(year_data > ? + OR ( + year_data = ? + AND week_data >= ? + ) + )", + [$startYear, $startYear, $startWeek] + ) + + ->whereRaw( + "(year_data < ? + OR ( + year_data = ? + AND week_data <= ? + ) + )", + [$endYear, $endYear, $endWeek] + ); + }) + + ->where('case_lab_results.is_positive', 1) + + ->whereNotNull('case_lab_results.pathogen_name') + + ->selectRaw(" + + surveillance_cases.year_data as year, + surveillance_cases.week_data as period, + + case_lab_results.pathogen_name as pathogen, + case_lab_results.subtype, + + CASE + + WHEN LOWER(case_lab_results.pathogen_name) + LIKE '%influenza%' + + OR LOWER(case_lab_results.pathogen_name) + LIKE '%covid%' + + OR LOWER(case_lab_results.pathogen_name) + LIKE '%sars-cov%' + + THEN 'section_1' + + WHEN LOWER(case_lab_results.indicator) + LIKE '%serum%' + + THEN 'section_3' + + ELSE 'section_2' + + END as afi_section, + + COUNT(DISTINCT surveillance_cases.lab_code) + as total_positive + + ") + + ->groupBy( + 'surveillance_cases.year_data', + 'surveillance_cases.week_data', + 'pathogen', + 'subtype', + 'afi_section' + ) + + ->orderBy('surveillance_cases.year_data') + ->orderBy('surveillance_cases.week_data') + + ->get(); + + return [ + + 'section_1' => $rows + ->where('afi_section', 'section_1') + ->values(), + + 'section_2' => $rows + ->where('afi_section', 'section_2') + ->values(), + + 'section_3' => $rows + ->where('afi_section', 'section_3') + ->values() + + ]; + } + + + public function afiCaseTrend( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ) { + + /* + |-------------------------------------------------------------------------- + | AFI SECTION SQL + |-------------------------------------------------------------------------- + */ + + $afiSectionSql = " + + CASE + + WHEN LOWER(case_lab_results.indicator) + LIKE '%influenza%' + + OR LOWER(case_lab_results.indicator) + LIKE '%covid%' + + THEN 'section_1' + + WHEN LOWER(case_lab_results.indicator) + LIKE '%serum%' + + THEN 'section_3' + + ELSE 'section_2' + + END + + "; + + /* + |-------------------------------------------------------------------------- + | ALL TESTED CASES + |-------------------------------------------------------------------------- + | + | THIS MUST INCLUDE: + | - positive + | - negative + | - weeks with no positives + | + */ + + $totalCases = CaseLabResult::join( + 'surveillance_cases', + 'case_lab_results.lab_code', + '=', + 'surveillance_cases.lab_code' + ) + + ->where( + 'surveillance_cases.surveillance_id', + $surveillanceId + ) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + + $q->whereRaw( + "(year_data > ? + OR ( + year_data = ? + AND week_data >= ? + ) + )", + [ + $startYear, + $startYear, + $startWeek + ] + ) + + ->whereRaw( + "(year_data < ? + OR ( + year_data = ? + AND week_data <= ? + ) + )", + [ + $endYear, + $endYear, + $endWeek + ] + ); + + }) + + ->selectRaw(" + + surveillance_cases.year_data as year, + surveillance_cases.week_data as period, + + {$afiSectionSql} + as afi_section, + + COUNT(DISTINCT case_lab_results.lab_code) + as total_cases + + ") + + ->groupBy( + 'surveillance_cases.year_data', + 'surveillance_cases.week_data', + 'afi_section' + ) + + ->orderBy('surveillance_cases.year_data') + + ->orderBy('surveillance_cases.week_data') + + ->get(); + + /* + |-------------------------------------------------------------------------- + | KEYED TOTALS + |-------------------------------------------------------------------------- + */ + + $totalCasesKeyed = $totalCases->keyBy( + + fn($r) => + + $r->year . + '-' . + $r->period . + '-' . + $r->afi_section + + ); + + /* + |-------------------------------------------------------------------------- + | POSITIVE RESULTS + |-------------------------------------------------------------------------- + */ + + $rows = CaseLabResult::join( + 'surveillance_cases', + 'case_lab_results.lab_code', + '=', + 'surveillance_cases.lab_code' + ) + + ->where( + 'surveillance_cases.surveillance_id', + $surveillanceId + ) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + + $q->whereRaw( + "(year_data > ? + OR ( + year_data = ? + AND week_data >= ? + ) + )", + [ + $startYear, + $startYear, + $startWeek + ] + ) + + ->whereRaw( + "(year_data < ? + OR ( + year_data = ? + AND week_data <= ? + ) + )", + [ + $endYear, + $endYear, + $endWeek + ] + ); + + }) + + ->where('case_lab_results.is_positive', 1) + + ->whereNotNull( + 'case_lab_results.pathogen_name' + ) + + ->where( + 'case_lab_results.pathogen_name', + '!=', + '' + ) + + ->selectRaw(" + + surveillance_cases.year_data as year, + surveillance_cases.week_data as period, + + CASE + + WHEN LOWER(case_lab_results.pathogen_name) + LIKE '%influenza%' + + THEN 'Influenza' + + ELSE case_lab_results.pathogen_name + + END as pathogen, + + case_lab_results.subtype, + + {$afiSectionSql} + as afi_section, + + COUNT(DISTINCT case_lab_results.lab_code) + as total_positive + + ") + + ->groupBy( + 'surveillance_cases.year_data', + 'surveillance_cases.week_data', + 'pathogen', + 'subtype', + 'afi_section' + ) + + ->orderBy('surveillance_cases.year_data') + + ->orderBy('surveillance_cases.week_data') + + ->get() + + ->map(function ($r) use ($totalCasesKeyed) { + + $key = + + $r->year . + '-' . + $r->period . + '-' . + $r->afi_section; + + $r->total_cases = + + $totalCasesKeyed[$key] + ->total_cases ?? 0; + + $r->positivity_rate = + + $r->total_cases > 0 + + ? round( + ( + $r->total_positive + / $r->total_cases + ) * 100, + 1 + ) + + : 0; + + return $r; + + }); + + /* + |-------------------------------------------------------------------------- + | RETURN + |-------------------------------------------------------------------------- + */ + + return [ + + 'section_1' => [ + + 'rows' => $rows + ->where( + 'afi_section', + 'section_1' + ) + ->values(), + + 'totals' => $totalCases + ->where( + 'afi_section', + 'section_1' + ) + ->values() + + ], + + 'section_2' => [ + + 'rows' => $rows + ->where( + 'afi_section', + 'section_2' + ) + ->values(), + + 'totals' => $totalCases + ->where( + 'afi_section', + 'section_2' + ) + ->values() + + ], + + 'section_3' => [ + + 'rows' => $rows + ->where( + 'afi_section', + 'section_3' + ) + ->values(), + + 'totals' => $totalCases + ->where( + 'afi_section', + 'section_3' + ) + ->values() + + ] + + ]; + + } + public function programSummaryFast($surveillanceId, $year = null, $week = null, $dateFrom = null, $dateTo = null) + { + $query = SurveillanceCase::leftJoin( + 'case_lab_results', + 'surveillance_cases.lab_code', + '=', + 'case_lab_results.lab_code' + ) + ->where('surveillance_cases.surveillance_id', $surveillanceId); + + if ($dateFrom && $dateTo) { + $query->whereBetween('surveillance_cases.case_date', [$dateFrom, $dateTo]); + } else { + $query->where('surveillance_cases.year_data', $year) + ->where('surveillance_cases.week_data', $week); + } + + $row = $query->selectRaw(" + COUNT(DISTINCT surveillance_cases.lab_code) as total_cases, + + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + THEN surveillance_cases.lab_code + END) as overall_positive, + + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND ( + LOWER(case_lab_results.pathogen_name) LIKE '%influenza%' + ) + THEN surveillance_cases.lab_code + END) as influenza_positive, + + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND ( + LOWER(case_lab_results.pathogen_name) LIKE '%covid%' + ) + THEN surveillance_cases.lab_code + END) as covid_positive + ")->first(); + + if (!$row || $row->total_cases == 0) { + return [ + 'cases' => 0, + 'overall_rate' => 0, + 'influenza_rate' => 0, + 'covid_rate' => 0 + ]; + } + + return [ + 'cases' => $row->total_cases, + 'overall_rate' => round(($row->overall_positive / $row->total_cases) * 100, 1), + 'influenza_rate' => round(($row->influenza_positive / $row->total_cases) * 100, 1), + 'covid_rate' => round(($row->covid_positive / $row->total_cases) * 100, 1), + ]; + } + public function programSummary($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + $dateTo = now()->toDateString(); + $dateFrom = now()->subDays(7)->toDateString(); + + $current = $this->programSummaryFast( + $surveillanceId, + null, + null, + $dateFrom, + $dateTo + ); + + $prevFrom = date('Y-m-d', strtotime($dateFrom . ' -7 days')); + $prevTo = date('Y-m-d', strtotime($dateFrom . ' -1 day')); + + $previous = $this->programSummaryFast( + $surveillanceId, + null, + null, + $prevFrom, + $prevTo + ); + + return [ + 'cases' => [ + 'current' => $current['cases'], + 'previous' => $previous['cases'] + ], + 'hospital_rate' => [ + 'current' => 0, + 'previous' => 0 + ], + 'icu_rate' => [ + 'current' => 0, + 'previous' => 0 + ], + 'positivity_rate' => [ + 'current' => $current['overall_rate'], + 'previous' => $previous['overall_rate'] + ], + 'influenza_rate' => [ + 'current' => $current['influenza_rate'], + 'previous' => $previous['influenza_rate'] + ], + 'covid_rate' => [ + 'current' => $current['covid_rate'], + 'previous' => $previous['covid_rate'] + ], + ]; + } + + + /* + |-------------------------------------------------------------------------- + | Overview Trend + |-------------------------------------------------------------------------- + */ + + public function aggregateAllPrograms($startYear, $startWeek, $endYear, $endWeek) + { + + $data = SurveillanceCase::selectRaw(" + surveillance_id, + year_data as year, + week_data as period, + COUNT(*) as total + ") + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + + $q->whereRaw( + "(year_data > ? OR (year_data = ? AND week_data >= ?))", + [$startYear, $startYear, $startWeek] + ) + + ->whereRaw( + "(year_data < ? OR (year_data = ? AND week_data <= ?))", + [$endYear, $endYear, $endWeek] + ); + + }) + + ->groupBy('surveillance_id', 'year_data', 'week_data') + ->orderBy('year_data') + ->orderBy('week_data') + ->get(); + + + $programs = Surveillance::pluck('code', 'id'); + + $results = []; + + foreach ($data as $row) { + + $code = $programs[$row->surveillance_id]; + + $results[$code][] = $row; + + } + + return $results; + } + + + + /* + |-------------------------------------------------------------------------- + | Program Dashboard + |-------------------------------------------------------------------------- + */ + + + + + + /* + |-------------------------------------------------------------------------- + | Trend Single Program + |-------------------------------------------------------------------------- + */ + + public function trendSingleProgram($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + + $rows = SurveillanceCase::leftJoin( + 'case_lab_results', + 'surveillance_cases.lab_code', + '=', + 'case_lab_results.lab_code' + ) + + ->where('surveillance_cases.surveillance_id', $surveillanceId) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + + $q->whereRaw( + "(surveillance_cases.year_data > ? OR (surveillance_cases.year_data = ? AND surveillance_cases.week_data >= ?))", + [$startYear, $startYear, $startWeek] + ) + + ->whereRaw( + "(surveillance_cases.year_data < ? OR (surveillance_cases.year_data = ? AND surveillance_cases.week_data <= ?))", + [$endYear, $endYear, $endWeek] + ); + + }) + + ->selectRaw(" + surveillance_cases.year_data as year, + surveillance_cases.week_data as period, + + COUNT(DISTINCT surveillance_cases.lab_code) as total_samples, + + -- Overall positivity + ROUND( + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + THEN surveillance_cases.lab_code + END) + / NULLIF(COUNT(DISTINCT surveillance_cases.lab_code), 0) * 100 + ,1) as positivity_rate, + + -- Influenza % + ROUND( + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND ( + LOWER(case_lab_results.pathogen_name) LIKE '%influenza%' + ) + THEN surveillance_cases.lab_code + END) + / NULLIF(COUNT(DISTINCT surveillance_cases.lab_code), 0) * 100 + ,1) as influenza_rate, + + -- COVID % + ROUND( + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND ( + case_lab_results.pathogen_name = 'COVID-19' + OR case_lab_results.pathogen_name = 'SARS-CoV-2' + ) + AND case_lab_results.indicator LIKE '%COVID%' + THEN surveillance_cases.lab_code + END) + / NULLIF(COUNT(DISTINCT surveillance_cases.lab_code), 0) * 100 + ,1) as covid_rate, + + -- EV % + ROUND( + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND LOWER(case_lab_results.pathogen_name) LIKE '%ev%' + THEN surveillance_cases.lab_code + END) + / NULLIF(COUNT(DISTINCT surveillance_cases.lab_code), 0) * 100 + ,1) as ev_rate, + + -- MPOX % + ROUND( + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND LOWER(case_lab_results.pathogen_name) LIKE '%mpox%' + THEN surveillance_cases.lab_code + END) + / NULLIF(COUNT(DISTINCT surveillance_cases.lab_code), 0) * 100 + ,1) as mpox_rate + ") + + ->groupBy( + 'surveillance_cases.year_data', + 'surveillance_cases.week_data' + ) + + ->get() + ->keyBy(fn($r) => $r->year . '-' . $r->period); + + + + $results = []; + + $year = $startYear; + $week = $startWeek; + + while (true) { + + $key = $year . '-' . $week; + + if (isset($rows[$key])) { + + $results[] = $rows[$key]; + + } else { + + $results[] = [ + 'year' => $year, + 'period' => $week, + 'total_samples' => 0, + 'positivity_rate' => 0 + ]; + + } + + if ($year == $endYear && $week == $endWeek) + break; + + $week++; + + if ($week > 52) { + $week = 1; + $year++; + } + + } + + return $results; + + } + public function virusTrend($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + return CaseLabResult::join( + 'surveillance_cases', + 'case_lab_results.lab_code', + '=', + 'surveillance_cases.lab_code' + ) + + ->where('surveillance_cases.surveillance_id', $surveillanceId) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw("(year_data > ? OR (year_data = ? AND week_data >= ?))", [$startYear, $startYear, $startWeek]) + ->whereRaw("(year_data < ? OR (year_data = ? AND week_data <= ?))", [$endYear, $endYear, $endWeek]); + }) + + ->selectRaw(" + surveillance_cases.week_data as period, + + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND ( + LOWER(case_lab_results.pathogen_name) LIKE '%influenza%' + ) + THEN surveillance_cases.lab_code + END) as influenza, + + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND ( + case_lab_results.pathogen_name = 'Positive' + OR case_lab_results.pathogen_name = 'SARS-CoV-2' + ) + AND case_lab_results.indicator LIKE '%Covid%' + THEN surveillance_cases.lab_code + END) as covid, + + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND LOWER(case_lab_results.pathogen_name) LIKE '%ev%' + THEN surveillance_cases.lab_code + END) as ev, + + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + AND LOWER(case_lab_results.pathogen_name) LIKE '%mpox%' + THEN surveillance_cases.lab_code + END) as mpox + ") + + ->groupBy('surveillance_cases.week_data') + ->orderBy('surveillance_cases.week_data') + ->get(); + } + + + /* + |-------------------------------------------------------------------------- + | Province Distribution (Program) + |-------------------------------------------------------------------------- + */ + public function provinceCircles($startYear, $startWeek, $endYear, $endWeek) + { + + return SurveillanceCase::join('case_lab_results', function ($join) { + $join->on('surveillance_cases.lab_code', '=', 'case_lab_results.lab_code') + ->on('surveillance_cases.surveillance_id', '=', 'case_lab_results.surveillance_id'); + }) + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw( + "(surveillance_cases.year_data * 100 + surveillance_cases.week_data) BETWEEN ? AND ?", + [ + $startYear * 100 + $startWeek, + $endYear * 100 + $endWeek + ] + ); + }) + ->whereRaw('case_lab_results.is_positive = 1 and surveillance_cases.surveillance_id not in(6) and case_lab_results.indicator="Influenza"') + ->selectRaw(" + surveillance_cases.patient_province, + case_lab_results.subtype as pathogen_name, + COUNT(DISTINCT surveillance_cases.lab_code) as total + ") + ->groupBy( + 'surveillance_cases.patient_province', + 'case_lab_results.subtype' + ) + ->get(); + + } + + /* Start Overview Section */ + + public function influenzaSubtypeDetected($startYear, $startWeek, $endYear, $endWeek) + { + return SurveillanceCase::join('case_lab_results', function ($join) { + $join->on('surveillance_cases.lab_code', '=', 'case_lab_results.lab_code') + ->on('surveillance_cases.surveillance_id', '=', 'case_lab_results.surveillance_id'); + }) + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw( + "(surveillance_cases.year_data * 100 + surveillance_cases.week_data) BETWEEN ? AND ?", + [ + $startYear * 100 + $startWeek, + $endYear * 100 + $endWeek + ] + ); + }) + ->whereRaw('case_lab_results.is_positive = 1 and surveillance_cases.surveillance_id not in(6) and case_lab_results.indicator="Influenza"') + ->selectRaw(" + case_lab_results.subtype, + COUNT(DISTINCT surveillance_cases.lab_code) as total + ") + ->groupBy( + 'case_lab_results.subtype' + ) + ->get(); + } + + public function covidDistributedByAgeGroup($startYear, $startWeek, $endYear, $endWeek) + { + return SurveillanceCase::join('case_lab_results', function ($join) { + $join->on('surveillance_cases.lab_code', '=', 'case_lab_results.lab_code') + ->on('surveillance_cases.surveillance_id', '=', 'case_lab_results.surveillance_id'); + }) + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw( + "(surveillance_cases.year_data * 100 + surveillance_cases.week_data) BETWEEN ? AND ?", + [ + $startYear * 100 + $startWeek, + $endYear * 100 + $endWeek + ] + ); + }) + ->whereRaw('case_lab_results.is_positive = 1 and surveillance_cases.surveillance_id not in(6) and case_lab_results.indicator="Covid-19"') + ->selectRaw(" + CASE + WHEN patient_age_inday <= 28 THEN '0–28 days' + WHEN patient_age_inday <= 364 THEN '29 days–11 months' + WHEN patient_age_inday <= 1460 THEN '1–4 years' + WHEN patient_age_inday <= 5110 THEN '5–14 years' + WHEN patient_age_inday <= 8765 THEN '15–24 years' + WHEN patient_age_inday <= 18250 THEN '25–49 years' + WHEN patient_age_inday <= 23725 THEN '50–64 years' + ELSE '65+ years' + END as age_group, + CASE + WHEN patient_age_inday <= 28 THEN 1 + WHEN patient_age_inday <= 364 THEN 2 + WHEN patient_age_inday <= 1460 THEN 3 + WHEN patient_age_inday <= 5110 THEN 4 + WHEN patient_age_inday <= 8765 THEN 5 + WHEN patient_age_inday <= 18250 THEN 6 + WHEN patient_age_inday <= 23725 THEN 7 + ELSE 8 + END as age_order, + COUNT(*) as total + ") + ->groupBy('age_group', 'age_order') + ->orderBy('age_order') + ->get(); + + } + + public function covidLineageRelativeOverTime($startYear, $startWeek, $endYear, $endWeek) + { + return SurveillanceCase::join('case_lab_results', function ($join) { + $join->on('surveillance_cases.lab_code', '=', 'case_lab_results.lab_code') + ->on('surveillance_cases.surveillance_id', '=', 'case_lab_results.surveillance_id'); + }) + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw( + "(surveillance_cases.year_data * 100 + surveillance_cases.week_data) BETWEEN ? AND ?", + [ + $startYear * 100 + $startWeek, + $endYear * 100 + $endWeek + ] + ); + }) + ->whereRaw('case_lab_results.is_positive = 1 and surveillance_cases.surveillance_id=6 and case_lab_results.indicator="Covid-19" and case_lab_results.pathogen_name not in("","unable to align","N/A","NA")') + ->selectRaw(" + case_lab_results.pathogen_name as lineage, + concat(surveillance_cases.year_data,'-',surveillance_cases.week_data) as week, + COUNT(DISTINCT surveillance_cases.lab_code) as total + ") + ->groupBy( + 'case_lab_results.pathogen_name', + 'week' + ) + ->get(); + } + + public function influenzaRelativeOverTime($startYear, $startWeek, $endYear, $endWeek) + { + return SurveillanceCase::join('case_lab_results', function ($join) { + $join->on('surveillance_cases.lab_code', '=', 'case_lab_results.lab_code') + ->on('surveillance_cases.surveillance_id', '=', 'case_lab_results.surveillance_id'); + }) + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw( + "(surveillance_cases.year_data * 100 + surveillance_cases.week_data) BETWEEN ? AND ?", + [ + $startYear * 100 + $startWeek, + $endYear * 100 + $endWeek + ] + ); + }) + ->whereRaw('case_lab_results.is_positive = 1 and surveillance_cases.surveillance_id not in(6) and case_lab_results.indicator="Influenza"') + ->selectRaw(" + case_lab_results.subtype as lineage, + concat(surveillance_cases.year_data,'-',surveillance_cases.week_data) as week, + COUNT(DISTINCT surveillance_cases.lab_code) as total + ") + ->groupBy( + 'case_lab_results.subtype', + 'week' + ) + ->get(); + } + + /* End Overview Section */ + + public function provinceProgram($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + return SurveillanceCase::selectRaw(" + surveillance_cases.patient_province, + + COUNT(DISTINCT surveillance_cases.lab_code) as total, + + COUNT(DISTINCT CASE + WHEN case_lab_results.is_positive = 1 + THEN surveillance_cases.lab_code + END) as positive + ") + + ->join( + 'case_lab_results', + 'surveillance_cases.lab_code', + '=', + 'case_lab_results.lab_code' + ) + + ->where('surveillance_cases.surveillance_id', $surveillanceId) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + + $q->whereRaw( + "(surveillance_cases.year_data > ? OR (surveillance_cases.year_data = ? AND surveillance_cases.week_data >= ?))", + [$startYear, $startYear, $startWeek] + ) + + ->whereRaw( + "(surveillance_cases.year_data < ? OR (surveillance_cases.year_data = ? AND surveillance_cases.week_data <= ?))", + [$endYear, $endYear, $endWeek] + ); + + }) + + ->groupBy('surveillance_cases.patient_province') + ->get(); + } + + /* + |-------------------------------------------------------------------------- + | sentinel sites + |-------------------------------------------------------------------------- + */ + public function sentinelSites($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + return SurveillanceCase::selectRaw(" + sentinel_site_name as name, + COUNT(DISTINCT lab_code) as total + ") + ->where('surveillance_id', $surveillanceId) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw("(year_data > ? OR (year_data = ? AND week_data >= ?))", [$startYear, $startYear, $startWeek]) + ->whereRaw("(year_data < ? OR (year_data = ? AND week_data <= ?))", [$endYear, $endYear, $endWeek]); + }) + + ->groupBy('sentinel_site_name') + ->orderByDesc('total') + ->get(); + } + + /* + |-------------------------------------------------------------------------- + | Pathogen Distribution + |-------------------------------------------------------------------------- + */ + + public function pathogenDistribution($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + $total = $this->totalTested($surveillanceId, $startYear, $startWeek, $endYear, $endWeek); + + $rows = CaseLabResult::where('case_lab_results.surveillance_id', $surveillanceId) + + ->whereIn('lab_code', function ($q) use ($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) { + $q->select('lab_code') + ->from('surveillance_cases') + ->where('surveillance_id', $surveillanceId) + ->whereRaw("(year_data > ? OR (year_data = ? AND week_data >= ?))", [$startYear, $startYear, $startWeek]) + ->whereRaw("(year_data < ? OR (year_data = ? AND week_data <= ?))", [$endYear, $endYear, $endWeek]); + }) + + ->where('case_lab_results.is_positive', 1) + + ->selectRaw(" + CASE + WHEN LOWER(case_lab_results.pathogen_name) LIKE '%influenza%' + THEN 'Influenza' + ELSE case_lab_results.pathogen_name + END as pathogen, + + COUNT(DISTINCT case_lab_results.lab_code) as total + ") + + ->groupBy('pathogen') + ->havingRaw("pathogen IS NOT NULL AND pathogen != ''") + ->orderByDesc('total') + ->get(); + + return $rows->map(function ($r) use ($total) { + $r->rate = $total > 0 ? round(($r->total / $total) * 100, 1) : 0; + return $r; + }); + } + public function subtypeDistribution($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + $total = $this->totalTested($surveillanceId, $startYear, $startWeek, $endYear, $endWeek); + + $rows = CaseLabResult::where('case_lab_results.surveillance_id', $surveillanceId) + + ->whereIn('case_lab_results.lab_code', function ($q) use ($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) { + $q->select('lab_code') + ->from('surveillance_cases') + ->where('surveillance_id', $surveillanceId) + ->whereRaw("(year_data > ? OR (year_data = ? AND week_data >= ?))", [$startYear, $startYear, $startWeek]) + ->whereRaw("(year_data < ? OR (year_data = ? AND week_data <= ?))", [$endYear, $endYear, $endWeek]); + }) + + ->where('case_lab_results.is_positive', 1) + ->where('case_lab_results.indicator', 'Influenza') + + ->selectRaw(" + case_lab_results.subtype as subtype, + COUNT(DISTINCT case_lab_results.lab_code) as total + ") + + + ->groupBy('subtype') + ->orderByDesc('total') + ->get(); + + return $rows->map(function ($r) use ($total) { + $r->rate = $total > 0 ? round(($r->total / $total) * 100, 1) : 0; + return $r; + }); + } + + /* + |-------------------------------------------------------------------------- + | Age Distribution + |-------------------------------------------------------------------------- + */ + + public function ageDistribution($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + return SurveillanceCase::selectRaw(" + CASE + WHEN patient_age_inday <= 28 THEN '0–28 days' + WHEN patient_age_inday <= 364 THEN '29 days–11 months' + WHEN patient_age_inday <= 1460 THEN '1–4 years' + WHEN patient_age_inday <= 5110 THEN '5–14 years' + WHEN patient_age_inday <= 8765 THEN '15–24 years' + WHEN patient_age_inday <= 18250 THEN '25–49 years' + WHEN patient_age_inday <= 23725 THEN '50–64 years' + ELSE '65+ years' + END as age_group, + + CASE + WHEN patient_age_inday <= 28 THEN 1 + WHEN patient_age_inday <= 364 THEN 2 + WHEN patient_age_inday <= 1460 THEN 3 + WHEN patient_age_inday <= 5110 THEN 4 + WHEN patient_age_inday <= 8765 THEN 5 + WHEN patient_age_inday <= 18250 THEN 6 + WHEN patient_age_inday <= 23725 THEN 7 + ELSE 8 + END as age_order, + + COUNT(*) as total + ") + + ->where('surveillance_id', $surveillanceId) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + + $q->whereRaw( + "(year_data > ? OR (year_data = ? AND week_data >= ?))", + [$startYear, $startYear, $startWeek] + ) + ->whereRaw( + "(year_data < ? OR (year_data = ? AND week_data <= ?))", + [$endYear, $endYear, $endWeek] + ); + + }) + + ->groupBy('age_group', 'age_order') + ->orderBy('age_order') + ->get(); + } + + /* + |-------------------------------------------------------------------------- + | Sex Distribution + |-------------------------------------------------------------------------- + */ + + public function sexDistribution($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + + return SurveillanceCase::selectRaw(" + patient_sex, + COUNT(*) as total + ") + + ->where('surveillance_id', $surveillanceId) + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + + $q->whereRaw( + "(year_data > ? OR (year_data = ? AND week_data >= ?))", + [$startYear, $startYear, $startWeek] + ) + + ->whereRaw( + "(year_data < ? OR (year_data = ? AND week_data <= ?))", + [$endYear, $endYear, $endWeek] + ); + + }) + + ->groupBy('patient_sex') + ->get(); + + } + /* + |-------------------------------------------------------------------------- + | sequencing trend + |-------------------------------------------------------------------------- + */ + + + public function sequencingTrend($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + return CaseLabResult::join( + 'surveillance_cases', + 'case_lab_results.lab_code', + '=', + 'surveillance_cases.lab_code' + ) + ->where('surveillance_cases.surveillance_id', $surveillanceId) + + ->where('case_lab_results.is_positive', 1) + + ->whereNotNull('subtype') + + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw("(year_data > ? OR (year_data = ? AND week_data >= ?))", [$startYear, $startYear, $startWeek]) + ->whereRaw("(year_data < ? OR (year_data = ? AND week_data <= ?))", [$endYear, $endYear, $endWeek]); + }) + + ->selectRaw(" + concat(surveillance_cases.year_data,'-',surveillance_cases.week_data) as period, + subtype, + COUNT(DISTINCT surveillance_cases.lab_code) as total + ") + + ->groupBy('period', 'subtype') + ->orderBy('period') + ->get(); + } + + + public function influenzaRelativeOverTimeSequencing($startYear, $startWeek, $endYear, $endWeek) + { + return SurveillanceCase::join('case_lab_results', function ($join) { + $join->on('surveillance_cases.lab_code', '=', 'case_lab_results.lab_code') + ->on('surveillance_cases.surveillance_id', '=', 'case_lab_results.surveillance_id'); + }) + ->where(function ($q) use ($startYear, $startWeek, $endYear, $endWeek) { + $q->whereRaw( + "(surveillance_cases.year_data * 100 + surveillance_cases.week_data) BETWEEN ? AND ?", + [ + $startYear * 100 + $startWeek, + $endYear * 100 + $endWeek + ] + ); + }) + ->whereRaw('case_lab_results.is_positive = 1 and surveillance_cases.surveillance_id in(6) and case_lab_results.indicator="Influenza"') + ->selectRaw(" + case_lab_results.pathogen_name as lineage, + concat(surveillance_cases.year_data,'-',surveillance_cases.week_data) as week, + COUNT(DISTINCT surveillance_cases.lab_code) as total + ") + ->groupBy( + 'case_lab_results.pathogen_name', + 'week' + ) + ->get(); + } + + + public function programDashboardData($surveillanceId, $startYear, $startWeek, $endYear, $endWeek) + { + + return [ + + 'total_tested' => $this->totalTested( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + + 'summary' => $this->programSummary( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + + 'trend' => $this->trendSingleProgram( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + + 'pathogen_distribution' => $this->pathogenDistribution( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + + 'age_distribution' => $this->ageDistribution( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + + 'sex_distribution' => $this->sexDistribution( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + // 'afi_trend' => $this->afiTrend( + // $surveillanceId, + // $startYear, + // $startWeek, + // $endYear, + // $endWeek + // ), + 'afi_case_trend' => $this->afiCaseTrend( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + + 'province_distribution' => $this->provinceProgram( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + 'virus_trend' => $this->virusTrend( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + 'subtype_distribution' => $this->subtypeDistribution( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + 'sentinel_sites' => $this->sentinelSites( + $surveillanceId, + $startYear, + $startWeek, + $endYear, + $endWeek + ), + + ]; + + } + +} diff --git a/dashboard/app/Services/DataRetrievalService.php b/dashboard/app/Services/DataRetrievalService.php new file mode 100644 index 0000000..6373d69 --- /dev/null +++ b/dashboard/app/Services/DataRetrievalService.php @@ -0,0 +1,150 @@ +apiBaseUrl = config('services.nphl_api.url'); + $this->apiUsername = config('services.nphl_api.username'); + $this->apiPassword = config('services.nphl_api.password'); + } + + public function get($endpoint) + { + try { + + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $this->apiBaseUrl . $endpoint); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_ENCODING, ''); + curl_setopt($ch, CURLOPT_MAXREDIRS, 10); + curl_setopt($ch, CURLOPT_TIMEOUT, 0); + curl_setopt($ch, CURL_HTTP_VERSION_1_1, 0); + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); + curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); + curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json')); + curl_setopt($ch, CURLOPT_USERPWD, $this->apiUsername . ":" . $this->apiPassword); + $resp = curl_exec($ch); + $b=""; + if($e = curl_error($ch)){ + $b= $e; + }else{ + $b= $resp; + } + curl_close($ch); + return $b; + + } catch (RequestException $e) { + return [ + 'error' => true, + 'message' => $e->getMessage(), + 'status' => optional($e->response)->status() + ]; + } + } + + + public function getSurveillanceData() + { + try{ + $lookbackDays = config('app.lookback_days'); + $surveillances = DB::connection('mysql')->select("select * from surveillances"); + foreach ($surveillances as $surveillance){ + $surveillance_data = $this->get('api/labsurveil.php?surveillance_id='.$surveillance->id.'&start_date='.now()->subDays($lookbackDays[$surveillance->code])->toDateString()); + $data = json_decode(preg_replace('/^\x{FEFF}+/u', '', $surveillance_data)); + @$this->insert_surveillance_cases((array)$data->laboratory_cases); + @$this->insert_surveillance_case_lab_results((array)$data->laboratory_results); + + } + + Log::channel('jobs')->info(now()->toDateString(). ' Service Reload Data Successfully Ran'); + return true; + } + catch (\Exception $e){ + Log::channel('jobs')->error($e->getMessage()); + return false; + } + + } + + private function insert_surveillance_cases($cases){ + + $case_data = []; + foreach ($cases as $case) { + $case_data[] = [ + 'lab_code' => $case->labcode, + 'case_date' => $case->patdate, + 'is_newcase' => $case->isnewcase, + 'sentinel_site_name' => $case->labname_en, + 'site_province_name' => $case->labaddress_en, + 'surveillance_id' => $case->surveillance_id, + 'year_data' => $case->year_data, + 'week_data' => $case->week_data, + 'patient_age_inday' => $case->patage, + 'patient_sex' => $case->patsex, + 'is_alive' => $case->is_alive, + 'patient_province' => $case->proname_en + ]; + } + + $case_chunks = array_chunk($case_data, 500); + foreach ($case_chunks as $chunk) { + DB::connection('mysql')->table('surveillance_cases')->upsert($chunk, [ + 'lab_code', + 'surveillance_id' + ], [ + 'case_date', + 'is_newcase', + 'sentinel_site_name', + 'site_province_name', + 'year_data', + 'week_data', + 'patient_age_inday', + 'patient_sex', + 'is_alive', + 'patient_province' + ]); + } + } + + private function insert_surveillance_case_lab_results($lab_results){ + $result_data = []; + foreach ($lab_results as $lab_result) { + $result_data[] = [ + 'lab_code' => $lab_result->labcode, + 'surveillance_id' => $lab_result->surveillance_id, + 'is_positive' => $lab_result->is_positive, + 'pathogen_name' => $lab_result->pathogen_name, + 'subtype' => $lab_result->subtype, + 'indicator' => $lab_result->indicator + ]; + } + $result_chunks = array_chunk($result_data, 500); + foreach ($result_chunks as $chunk) { + DB::connection('mysql')->table('case_lab_results')->upsert($chunk, + [ + 'lab_code', + 'surveillance_id', + 'indicator' + ], + [ + 'is_positive', + 'pathogen_name', + 'subtype' + ]); + } + } + +} diff --git a/dashboard/app/View/Components/AppLayout.php b/dashboard/app/View/Components/AppLayout.php new file mode 100644 index 0000000..de0d46f --- /dev/null +++ b/dashboard/app/View/Components/AppLayout.php @@ -0,0 +1,17 @@ + auth()->id(), + 'action' => $action, + 'description' => $description, + 'ip_address' => request()->ip(), + 'user_agent' => request()->userAgent(), + ]); + } + +} \ No newline at end of file diff --git a/dashboard/artisan b/dashboard/artisan new file mode 100644 index 0000000..c35e31d --- /dev/null +++ b/dashboard/artisan @@ -0,0 +1,18 @@ +#!/usr/bin/env php +handleCommand(new ArgvInput); + +exit($status); diff --git a/dashboard/bootstrap/app.php b/dashboard/bootstrap/app.php new file mode 100644 index 0000000..9f5e292 --- /dev/null +++ b/dashboard/bootstrap/app.php @@ -0,0 +1,21 @@ +withRouting( + web: __DIR__ . '/../routes/web.php', + api: __DIR__ . '/../routes/api.php', + commands: __DIR__ . '/../routes/console.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware): void { + $middleware->alias([ + 'role' => \App\Http\Middleware\RoleMiddleware::class, + ]); + }) + ->withExceptions(function (Exceptions $exceptions): void { + // + })->create(); diff --git a/dashboard/bootstrap/cache/.gitignore b/dashboard/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/dashboard/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/dashboard/bootstrap/providers.php b/dashboard/bootstrap/providers.php new file mode 100644 index 0000000..38b258d --- /dev/null +++ b/dashboard/bootstrap/providers.php @@ -0,0 +1,5 @@ +=5.0.0" + }, + "require-dev": { + "doctrine/dbal": "^4.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2024-02-09T16:56:22+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^12.0 || ^13.0", + "phpstan/phpstan": "^1.12 || ^2.0", + "phpstan/phpstan-phpunit": "^1.4 || ^2.0", + "phpstan/phpstan-strict-rules": "^1.6 || ^2.0", + "phpunit/phpunit": "^8.5 || ^12.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.1.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2025-08-10T19:31:58+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013", + "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013", + "shasum": "" + }, + "require": { + "php": "^8.2|^8.3|^8.4|^8.5" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.32|^2.1.31", + "phpunit/phpunit": "^8.5.48|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2025-10-31T18:51:33+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2025-03-06T22:45:56+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.4.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379", + "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379", + "shasum": "" + }, + "require": { + "php": "^8.1", + "symfony/http-foundation": "^5.4|^6.4|^7.3|^8" + }, + "require-dev": { + "phpstan/phpstan": "^2", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.4.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2025-12-03T09:33:47+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.4", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b", + "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.5" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2025-12-27T19:43:20+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.10.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^2.3", + "guzzlehttp/psr7": "^2.8", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.10.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2025-08-23T22:36:01+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "481557b130ef3790cf82b713667b43030dc9c957" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957", + "reference": "481557b130ef3790cf82b713667b43030dc9c957", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.44 || ^9.6.25" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.3.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2025-08-22T14:34:08+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.8.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "21dc724a0583619cd1652f673303492272778051" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051", + "reference": "21dc724a0583619cd1652f673303492272778051", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.44 || ^9.6.25" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.8.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2025-08-23T21:21:41+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.5", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1", + "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.44 || ^9.6.25", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.5" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2025-08-22T14:27:06+00:00" + }, + { + "name": "laravel/framework", + "version": "v12.53.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "f57f035c0d34503d9ff30be76159bb35a003cd1f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/f57f035c0d34503d9ff30be76159bb35a003cd1f", + "reference": "f57f035c0d34503d9ff30be76159bb35a003cd1f", + "shasum": "" + }, + "require": { + "brick/math": "^0.11|^0.12|^0.13|^0.14", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.4", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.3", + "guzzlehttp/guzzle": "^7.8.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.3.0", + "laravel/serializable-closure": "^1.3|^2.0", + "league/commonmark": "^2.7", + "league/flysystem": "^3.25.1", + "league/flysystem-local": "^3.25.1", + "league/uri": "^7.5.1", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^3.8.4", + "nunomaduro/termwind": "^2.0", + "php": "^8.2", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^7.2.0", + "symfony/error-handler": "^7.2.0", + "symfony/finder": "^7.2.0", + "symfony/http-foundation": "^7.2.0", + "symfony/http-kernel": "^7.2.0", + "symfony/mailer": "^7.2.0", + "symfony/mime": "^7.2.0", + "symfony/polyfill-php83": "^1.33", + "symfony/polyfill-php84": "^1.33", + "symfony/polyfill-php85": "^1.33", + "symfony/process": "^7.2.0", + "symfony/routing": "^7.2.0", + "symfony/uid": "^7.2.0", + "symfony/var-dumper": "^7.2.0", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.6.1", + "voku/portable-ascii": "^2.0.2" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/log-implementation": "1.0|2.0|3.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/concurrency": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/json-schema": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/reflection": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version", + "spatie/once": "*" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.322.9", + "ext-gmp": "*", + "fakerphp/faker": "^1.24", + "guzzlehttp/promises": "^2.0.3", + "guzzlehttp/psr7": "^2.4", + "laravel/pint": "^1.18", + "league/flysystem-aws-s3-v3": "^3.25.1", + "league/flysystem-ftp": "^3.25.1", + "league/flysystem-path-prefixing": "^3.25.1", + "league/flysystem-read-only": "^3.25.1", + "league/flysystem-sftp-v3": "^3.25.1", + "mockery/mockery": "^1.6.10", + "opis/json-schema": "^2.4.1", + "orchestra/testbench-core": "^10.9.0", + "pda/pheanstalk": "^5.0.6|^7.0.0", + "php-http/discovery": "^1.15", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1", + "predis/predis": "^2.3|^3.0", + "resend/resend-php": "^0.10.0|^1.0", + "symfony/cache": "^7.2.0", + "symfony/http-client": "^7.2.0", + "symfony/psr-http-message-bridge": "^7.2.0", + "symfony/translation": "^7.2.0" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).", + "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).", + "fakerphp/faker": "Required to generate fake data using the fake() helper (^1.23).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).", + "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).", + "mockery/mockery": "Required to use mocking (^1.6).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", + "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", + "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).", + "predis/predis": "Required to use the predis connector (^2.3|^3.0).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0|^1.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "12.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/functions.php", + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Log/functions.php", + "src/Illuminate/Reflection/helpers.php", + "src/Illuminate/Support/functions.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/", + "src/Illuminate/Reflection/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2026-02-24T14:35:15+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.3.13", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/ed8c466571b37e977532fb2fd3c272c784d7050d", + "reference": "ed8c466571b37e977532fb2fd3c272c784d7050d", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.2|^7.0|^8.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "illuminate/collections": "^10.0|^11.0|^12.0|^13.0", + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3|^3.4|^4.0", + "phpstan/phpstan": "^1.12.28", + "phpstan/phpstan-mockery": "^1.1.3" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.3.13" + }, + "time": "2026-02-06T12:17:10+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v2.0.10", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "870fc81d2f879903dfc5b60bf8a0f94a1609e669" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/870fc81d2f879903dfc5b60bf8a0f94a1609e669", + "reference": "870fc81d2f879903dfc5b60bf8a0f94a1609e669", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", + "nesbot/carbon": "^2.67|^3.0", + "pestphp/pest": "^2.36|^3.0|^4.0", + "phpstan/phpstan": "^2.0", + "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2026-02-20T19:59:49+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.11.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "c9f80cc835649b5c1842898fb043f8cc098dd741" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/c9f80cc835649b5c1842898fb043f8cc098dd741", + "reference": "c9f80cc835649b5c1842898fb043f8cc098dd741", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0|^8.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.11.1" + }, + "time": "2026-02-06T14:12:35+00:00" + }, + { + "name": "league/commonmark", + "version": "2.8.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "4efa10c1e56488e658d10adf7b7b7dcd19940bfb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/4efa10c1e56488e658d10adf7b7b7dcd19940bfb", + "reference": "4efa10c1e56488e658d10adf7b7b7dcd19940bfb", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 | ^7.0", + "symfony/process": "^5.4 | ^6.0 | ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.9-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2025-11-26T21:48:24+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "3.32.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "254b1595b16b22dbddaaef9ed6ca9fdac4956725" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/254b1595b16b22dbddaaef9ed6ca9fdac4956725", + "reference": "254b1595b16b22dbddaaef9ed6ca9fdac4956725", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3|^2", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2|^2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.32.0" + }, + "time": "2026-02-25T17:01:41+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.31.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079", + "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0" + }, + "time": "2026-01-23T15:30:45+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-09-21T08:32:55+00:00" + }, + { + "name": "league/uri", + "version": "7.8.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri.git", + "reference": "4436c6ec8d458e4244448b069cc572d088230b76" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/4436c6ec8d458e4244448b069cc572d088230b76", + "reference": "4436c6ec8d458e4244448b069cc572d088230b76", + "shasum": "" + }, + "require": { + "league/uri-interfaces": "^7.8", + "php": "^8.1", + "psr/http-factory": "^1" + }, + "conflict": { + "league/uri-schemes": "^1.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-dom": "to convert the URI into an HTML anchor tag", + "ext-fileinfo": "to create Data URI from file contennts", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "ext-uri": "to use the PHP native URI class", + "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain", + "league/uri-components": "to provide additional tools to manipulate URI objects components", + "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP", + "php-64bit": "to improve IPV4 host parsing", + "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "URI manipulation library", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "URN", + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "middleware", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc2141", + "rfc3986", + "rfc3987", + "rfc6570", + "rfc8141", + "uri", + "uri-template", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri/tree/7.8.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2026-01-14T17:24:56+00:00" + }, + { + "name": "league/uri-interfaces", + "version": "7.8.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri-interfaces.git", + "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c5c5cd056110fc8afaba29fa6b72a43ced42acd4", + "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^8.1", + "psr/http-message": "^1.1 || ^2.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2026-01-15T06:54:53+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.10.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0", + "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8 || ^2.0", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "php-console/php-console": "^3.1.8", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^10.5.17 || ^11.0.7", + "predis/predis": "^1.1 || ^2", + "rollbar/rollbar": "^4.0", + "ruflin/elastica": "^7 || ^8", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.10.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2026-01-02T08:56:05+00:00" + }, + { + "name": "nesbot/carbon", + "version": "3.11.1", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "f438fcc98f92babee98381d399c65336f3a3827f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/f438fcc98f92babee98381d399c65336f3a3827f", + "reference": "f438fcc98f92babee98381d399c65336f3a3827f", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "<100.0", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3.12 || ^7.0 || ^8.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^3.6.3 || ^4.0", + "doctrine/orm": "^2.15.2 || ^3.0", + "friendsofphp/php-cs-fixer": "^v3.87.1", + "kylekatarnls/multi-tester": "^2.5.3", + "phpmd/phpmd": "^2.15.0", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^2.1.22", + "phpunit/phpunit": "^10.5.53", + "squizlabs/php_codesniffer": "^3.13.4 || ^4.0.0" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev", + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbonphp.github.io/carbon/", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbonphp.github.io/carbon/guide/getting-started/introduction.html", + "issues": "https://github.com/CarbonPHP/carbon/issues", + "source": "https://github.com/CarbonPHP/carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2026-01-29T09:26:29+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.5", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002", + "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.5" + }, + "require-dev": { + "nette/phpstan-rules": "^1.0", + "nette/tester": "^2.6", + "phpstan/extension-installer": "^1.4@stable", + "phpstan/phpstan": "^2.1.39@stable", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "psr-4": { + "Nette\\": "src" + }, + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.5" + }, + "time": "2026-02-23T03:47:12+00:00" + }, + { + "name": "nette/utils", + "version": "v4.1.3", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/bb3ea637e3d131d72acc033cfc2746ee893349fe", + "reference": "bb3ea637e3d131d72acc033cfc2746ee893349fe", + "shasum": "" + }, + "require": { + "php": "8.2 - 8.5" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "^1.2", + "nette/phpstan-rules": "^1.0", + "nette/tester": "^2.5", + "phpstan/extension-installer": "^1.4@stable", + "phpstan/phpstan": "^2.1@stable", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Nette\\": "src" + }, + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.1.3" + }, + "time": "2026-02-13T03:05:33+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.7.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82", + "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0" + }, + "time": "2025-12-06T11:56:16+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v2.4.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "712a31b768f5daea284c2169a7d227031001b9a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/712a31b768f5daea284c2169a7d227031001b9a8", + "reference": "712a31b768f5daea284c2169a7d227031001b9a8", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.2", + "symfony/console": "^7.4.4 || ^8.0.4" + }, + "require-dev": { + "illuminate/console": "^11.47.0", + "laravel/pint": "^1.27.1", + "mockery/mockery": "^1.6.12", + "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.3.2", + "phpstan/phpstan": "^1.12.32", + "phpstan/phpstan-strict-rules": "^1.6.2", + "symfony/var-dumper": "^7.3.5 || ^8.0.4", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "It's like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v2.4.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2026-02-16T23:10:27+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.5", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "75365b91986c2405cf5e1e012c5595cd487a98be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be", + "reference": "75365b91986c2405cf5e1e012c5595cd487a98be", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.5" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2025-12-27T19:41:33+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.20", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "19678eb6b952a03b8a1d96ecee9edba518bb0373" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/19678eb6b952a03b8a1d96ecee9edba518bb0373", + "reference": "19678eb6b952a03b8a1d96ecee9edba518bb0373", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2", + "composer/class-map-generator": "^1.6" + }, + "suggest": { + "composer/class-map-generator": "Improved tab completion performance with better class discovery.", + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": false, + "forward-command": false + }, + "branch-alias": { + "dev-main": "0.12.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "https://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.20" + }, + "time": "2026-02-11T15:05:28+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.45", + "fakerphp/faker": "^1.24", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^2.1", + "mockery/mockery": "^1.6", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.4", + "phpspec/prophecy-phpunit": "^2.3", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^10.5", + "ramsey/coding-standard": "^2.3", + "ramsey/conventional-commits": "^1.6", + "roave/security-advisories": "dev-latest" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.1.1" + }, + "time": "2025-03-22T05:38:12+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.9.2", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "8429c78ca35a09f27565311b98101e2826affde0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0", + "reference": "8429c78ca35a09f27565311b98101e2826affde0", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.25", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.9.2" + }, + "time": "2025-12-14T04:43:48+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "9169f24776edde469914c1e7a1442a50f7a4e110" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/9169f24776edde469914c1e7a1442a50f7a4e110", + "reference": "9169f24776edde469914c1e7a1442a50f7a4e110", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Decouples applications from the system clock", + "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], + "support": { + "source": "https://github.com/symfony/clock/tree/v7.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-12T15:39:26+00:00" + }, + { + "name": "symfony/console", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "6d643a93b47398599124022eb24d97c153c12f27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/6d643a93b47398599124022eb24d97c153c12f27", + "reference": "6d643a93b47398599124022eb24d97c153c12f27", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^7.2|^8.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/event-dispatcher": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/lock": "^6.4|^7.0|^8.0", + "symfony/messenger": "^6.4|^7.0|^8.0", + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/stopwatch": "^6.4|^7.0|^8.0", + "symfony/var-dumper": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-25T17:02:47+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "2e7c52c647b406e2107dd867db424a4dbac91864" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/2e7c52c647b406e2107dd867db424a4dbac91864", + "reference": "2e7c52c647b406e2107dd867db424a4dbac91864", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-17T07:53:42+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v7.4.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/8da531f364ddfee53e36092a7eebbbd0b775f6b8", + "reference": "8da531f364ddfee53e36092a7eebbbd0b775f6b8", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/polyfill-php85": "^1.32", + "symfony/var-dumper": "^6.4|^7.0|^8.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/serializer": "^6.4|^7.0|^8.0", + "symfony/webpack-encore-bundle": "^1.0|^2.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v7.4.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-01-20T16:42:42+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.4.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "dc2c0eba1af673e736bb851d747d266108aea746" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dc2c0eba1af673e736bb851d747d266108aea746", + "reference": "dc2c0eba1af673e736bb851d747d266108aea746", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/error-handler": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/framework-bundle": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-01-05T11:45:34+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "8655bf1076b7a3a346cb11413ffdabff50c7ffcf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/8655bf1076b7a3a346cb11413ffdabff50c7ffcf", + "reference": "8655bf1076b7a3a346cb11413ffdabff50c7ffcf", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-01-29T09:40:50+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "fd97d5e926e988a363cef56fbbf88c5c528e9065" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fd97d5e926e988a363cef56fbbf88c5c528e9065", + "reference": "fd97d5e926e988a363cef56fbbf88c5c528e9065", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "^1.1" + }, + "conflict": { + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + }, + "require-dev": { + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4.12|^7.1.5|^8.0", + "symfony/clock": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/mime": "^6.4|^7.0|^8.0", + "symfony/rate-limiter": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-21T16:25:55+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "002ac0cf4cd972a7fd0912dcd513a95e8a81ce83" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/002ac0cf4cd972a7fd0912dcd513a95e8a81ce83", + "reference": "002ac0cf4cd972a7fd0912dcd513a95e8a81ce83", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0|^8.0", + "symfony/event-dispatcher": "^7.3|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<6.4", + "symfony/cache": "<6.4", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<6.4", + "symfony/flex": "<2.10", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<6.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.12" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^6.4|^7.0|^8.0", + "symfony/clock": "^6.4|^7.0|^8.0", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/css-selector": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4.1|^7.0.1|^8.0", + "symfony/dom-crawler": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/property-access": "^7.1|^8.0", + "symfony/routing": "^6.4|^7.0|^8.0", + "symfony/serializer": "^7.1|^8.0", + "symfony/stopwatch": "^6.4|^7.0|^8.0", + "symfony/translation": "^6.4|^7.0|^8.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^6.4|^7.0|^8.0", + "symfony/validator": "^6.4|^7.0|^8.0", + "symfony/var-dumper": "^6.4|^7.0|^8.0", + "symfony/var-exporter": "^6.4|^7.0|^8.0", + "twig/twig": "^3.12" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-26T08:30:57+00:00" + }, + { + "name": "symfony/mailer", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "b02726f39a20bc65e30364f5c750c4ddbf1f58e9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/b02726f39a20bc65e30364f5c750c4ddbf1f58e9", + "reference": "b02726f39a20bc65e30364f5c750c4ddbf1f58e9", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.2", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^6.4|^7.0|^8.0", + "symfony/mime": "^7.2|^8.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/messenger": "<6.4", + "symfony/mime": "<6.4", + "symfony/twig-bridge": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/http-client": "^6.4|^7.0|^8.0", + "symfony/messenger": "^6.4|^7.0|^8.0", + "symfony/twig-bridge": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-25T16:50:00+00:00" + }, + { + "name": "symfony/mime", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "9fc881d95feae4c6c48678cb6372bd8a7ba04f5f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/9fc881d95feae4c6c48678cb6372bd8a7ba04f5f", + "reference": "9fc881d95feae4c6c48678cb6372bd8a7ba04f5f", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<5.2|>=7", + "phpdocumentor/type-resolver": "<1.5.1", + "symfony/mailer": "<6.4", + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^5.2|^6.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/property-access": "^6.4|^7.0|^8.0", + "symfony/property-info": "^6.4|^7.0|^8.0", + "symfony/serializer": "^6.4.3|^7.0.3|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-05T15:57:06+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-27T09:58:17+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3", + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "symfony/polyfill-intl-normalizer": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-10T14:38:51+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-12-23T08:48:59+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-02T08:10:11+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5", + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-07-08T02:45:35+00:00" + }, + { + "name": "symfony/polyfill-php84", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php84.git", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php84\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-24T13:30:11+00:00" + }, + { + "name": "symfony/polyfill-php85", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php85.git", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php85\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-23T16:12:55+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/process", + "version": "v7.4.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "608476f4604102976d687c483ac63a79ba18cc97" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97", + "reference": "608476f4604102976d687c483ac63a79ba18cc97", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.4.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-01-26T15:07:59+00:00" + }, + { + "name": "symfony/routing", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "238d749c56b804b31a9bf3e26519d93b65a60938" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/238d749c56b804b31a9bf3e26519d93b65a60938", + "reference": "238d749c56b804b31a9bf3e26519d93b65a60938", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/yaml": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-25T16:50:00+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.6.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43", + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.6.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-07-15T11:30:57+00:00" + }, + { + "name": "symfony/string", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "9f209231affa85aa930a5e46e6eb03381424b30b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/9f209231affa85aa930a5e46e6eb03381424b30b", + "reference": "9f209231affa85aa930a5e46e6eb03381424b30b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.33", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.1|^8.0", + "symfony/http-client": "^6.4|^7.0|^8.0", + "symfony/intl": "^6.4|^7.0|^8.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-09T09:33:46+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "1888cf064399868af3784b9e043240f1d89d25ce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/1888cf064399868af3784b9e043240f1d89d25ce", + "reference": "1888cf064399868af3784b9e043240f1d89d25ce", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5.3|^3.3" + }, + "conflict": { + "nikic/php-parser": "<5.0", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/intl": "^6.4|^7.0|^8.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-17T07:53:42+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.6.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "65a8bc82080447fae78373aa10f8d13b38338977" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977", + "reference": "65a8bc82080447fae78373aa10f8d13b38338977", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-07-15T13:41:35+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.4.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "7719ce8aba76be93dfe249192f1fbfa52c588e36" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/7719ce8aba76be93dfe249192f1fbfa52c588e36", + "reference": "7719ce8aba76be93dfe249192f1fbfa52c588e36", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v7.4.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-01-03T23:30:35+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "045321c440ac18347b136c63d2e9bf28a2dc0291" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/045321c440ac18347b136c63d2e9bf28a2dc0291", + "reference": "045321c440ac18347b136c63d2e9bf28a2dc0291", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/uid": "^6.4|^7.0|^8.0", + "twig/twig": "^3.12" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-15T10:53:20+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.4.0", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "f0292ccf0ec75843d65027214426b6b163b48b41" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41", + "reference": "f0292ccf0ec75843d65027214426b6b163b48b41", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^7.4 || ^8.0", + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.4.0" + }, + "time": "2025-12-02T11:56:42+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.3", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "955e7815d677a3eaa7075231212f2110983adecc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc", + "reference": "955e7815d677a3eaa7075231212f2110983adecc", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.4", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.5", + "symfony/polyfill-ctype": "^1.26", + "symfony/polyfill-mbstring": "^1.26", + "symfony/polyfill-php80": "^1.26" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2025-12-27T19:49:13+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "https://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.3" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2024-11-21T01:49:47+00:00" + } + ], + "packages-dev": [ + { + "name": "fakerphp/faker", + "version": "v1.24.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" + }, + "time": "2024-11-21T13:46:39+00:00" + }, + { + "name": "filp/whoops", + "version": "2.18.4", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d", + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.18.4" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2025-08-08T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1" + }, + "time": "2025-04-30T06:54:44+00:00" + }, + { + "name": "laravel/breeze", + "version": "v2.4.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/breeze.git", + "reference": "28cefeaf6af20177ddf5cc7b93e87e4ad79d533f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/breeze/zipball/28cefeaf6af20177ddf5cc7b93e87e4ad79d533f", + "reference": "28cefeaf6af20177ddf5cc7b93e87e4ad79d533f", + "shasum": "" + }, + "require": { + "illuminate/console": "^11.0|^12.0|^13.0", + "illuminate/filesystem": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", + "illuminate/validation": "^11.0|^12.0|^13.0", + "php": "^8.2.0", + "symfony/console": "^7.0|^8.0" + }, + "require-dev": { + "laravel/framework": "^11.0|^12.0|^13.0", + "orchestra/testbench-core": "^9.0|^10.0|^11.0", + "phpstan/phpstan": "^2.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Breeze\\BreezeServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Breeze\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.", + "keywords": [ + "auth", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/breeze/issues", + "source": "https://github.com/laravel/breeze" + }, + "time": "2026-03-10T19:59:01+00:00" + }, + { + "name": "laravel/pail", + "version": "v1.2.6", + "source": { + "type": "git", + "url": "https://github.com/laravel/pail.git", + "reference": "aa71a01c309e7f66bc2ec4fb1a59291b82eb4abf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pail/zipball/aa71a01c309e7f66bc2ec4fb1a59291b82eb4abf", + "reference": "aa71a01c309e7f66bc2ec4fb1a59291b82eb4abf", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/console": "^10.24|^11.0|^12.0|^13.0", + "illuminate/contracts": "^10.24|^11.0|^12.0|^13.0", + "illuminate/log": "^10.24|^11.0|^12.0|^13.0", + "illuminate/process": "^10.24|^11.0|^12.0|^13.0", + "illuminate/support": "^10.24|^11.0|^12.0|^13.0", + "nunomaduro/termwind": "^1.15|^2.0", + "php": "^8.2", + "symfony/console": "^6.0|^7.0|^8.0" + }, + "require-dev": { + "laravel/framework": "^10.24|^11.0|^12.0|^13.0", + "laravel/pint": "^1.13", + "orchestra/testbench-core": "^8.13|^9.17|^10.8|^11.0", + "pestphp/pest": "^2.20|^3.0|^4.0", + "pestphp/pest-plugin-type-coverage": "^2.3|^3.0|^4.0", + "phpstan/phpstan": "^1.12.27", + "symfony/var-dumper": "^6.3|^7.0|^8.0", + "symfony/yaml": "^6.3|^7.0|^8.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Pail\\PailServiceProvider" + ] + }, + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Pail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Easily delve into your Laravel application's log files directly from the command line.", + "homepage": "https://github.com/laravel/pail", + "keywords": [ + "dev", + "laravel", + "logs", + "php", + "tail" + ], + "support": { + "issues": "https://github.com/laravel/pail/issues", + "source": "https://github.com/laravel/pail" + }, + "time": "2026-02-09T13:44:54+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.27.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "54cca2de13790570c7b6f0f94f37896bee4abcb5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/54cca2de13790570c7b6f0f94f37896bee4abcb5", + "reference": "54cca2de13790570c7b6f0f94f37896bee4abcb5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.93.1", + "illuminate/view": "^12.51.0", + "larastan/larastan": "^3.9.2", + "laravel-zero/framework": "^12.0.5", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^2.3.3", + "pestphp/pest": "^3.8.5" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "dev", + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2026-02-10T20:00:20+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.53.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "e340eaa2bea9b99192570c48ed837155dbf24fbb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/e340eaa2bea9b99192570c48ed837155dbf24fbb", + "reference": "e340eaa2bea9b99192570c48ed837155dbf24fbb", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0|^13.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0|^13.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0|^8.0", + "symfony/yaml": "^6.0|^7.0|^8.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0", + "phpstan/phpstan": "^2.0" + }, + "bin": [ + "bin/sail" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sail\\SailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Docker files for running a basic Laravel application.", + "keywords": [ + "docker", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/sail/issues", + "source": "https://github.com/laravel/sail" + }, + "time": "2026-02-06T12:16:02+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.12", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2024-05-16T03:13:13+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.13.4", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2025-08-01T08:46:24+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.9.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "a1ed3fa530fd60bc515f9303e8520fcb7d4bd935" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/a1ed3fa530fd60bc515f9303e8520fcb7d4bd935", + "reference": "a1ed3fa530fd60bc515f9303e8520fcb7d4bd935", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.18.4", + "nunomaduro/termwind": "^2.4.0", + "php": "^8.2.0", + "symfony/console": "^7.4.4 || ^8.0.4" + }, + "conflict": { + "laravel/framework": "<11.48.0 || >=14.0.0", + "phpunit/phpunit": "<11.5.50 || >=14.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.8.5", + "larastan/larastan": "^3.9.2", + "laravel/framework": "^11.48.0 || ^12.52.0", + "laravel/pint": "^1.27.1", + "orchestra/testbench-core": "^9.12.0 || ^10.9.0", + "pestphp/pest": "^3.8.5 || ^4.4.1 || ^5.0.0", + "sebastian/environment": "^7.2.1 || ^8.0.3 || ^9.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + }, + "branch-alias": { + "dev-8.x": "8.x-dev" + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "dev", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2026-02-17T17:33:08+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "11.0.12", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2c1ed04922802c15e1de5d7447b4856de949cf56", + "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.7.0", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-text-template": "^4.0.1", + "sebastian/code-unit-reverse-lookup": "^4.0.1", + "sebastian/complexity": "^4.0.1", + "sebastian/environment": "^7.2.1", + "sebastian/lines-of-code": "^3.0.1", + "sebastian/version": "^5.0.2", + "theseer/tokenizer": "^1.3.1" + }, + "require-dev": { + "phpunit/phpunit": "^11.5.46" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.12" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage", + "type": "tidelift" + } + ], + "time": "2025-12-24T07:01:01+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "5.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "2f3a64888c814fc235386b7387dd5b5ed92ad903" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/2f3a64888c814fc235386b7387dd5b5ed92ad903", + "reference": "2f3a64888c814fc235386b7387dd5b5ed92ad903", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator", + "type": "tidelift" + } + ], + "time": "2026-02-02T13:52:54+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "5.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:07:44+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:08:43+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "7.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:09:35+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "11.5.55", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/adc7262fccc12de2b30f12a8aa0b33775d814f00", + "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.13.4", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0.12", + "phpunit/php-file-iterator": "^5.1.1", + "phpunit/php-invoker": "^5.0.1", + "phpunit/php-text-template": "^4.0.1", + "phpunit/php-timer": "^7.0.1", + "sebastian/cli-parser": "^3.0.2", + "sebastian/code-unit": "^3.0.3", + "sebastian/comparator": "^6.3.3", + "sebastian/diff": "^6.0.2", + "sebastian/environment": "^7.2.1", + "sebastian/exporter": "^6.3.2", + "sebastian/global-state": "^7.0.2", + "sebastian/object-enumerator": "^6.0.1", + "sebastian/recursion-context": "^6.0.3", + "sebastian/type": "^5.1.3", + "sebastian/version": "^5.0.2", + "staabm/side-effects-detector": "^1.0.5" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.5-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.55" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2026-02-18T12:37:06+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:41:36+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-03-19T07:56:08+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:45:54+00:00" + }, + { + "name": "sebastian/comparator", + "version": "6.3.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2c95e1e86cb8dd41beb8d502057d1081ccc8eca9", + "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.4" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" + } + ], + "time": "2026-01-24T09:26:40+00:00" + }, + { + "name": "sebastian/complexity", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:49:50+00:00" + }, + { + "name": "sebastian/diff", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:53:05+00:00" + }, + { + "name": "sebastian/environment", + "version": "7.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4", + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/environment", + "type": "tidelift" + } + ], + "time": "2025-05-21T11:55:47+00:00" + }, + { + "name": "sebastian/exporter", + "version": "6.3.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "70a298763b40b213ec087c51c739efcaa90bcd74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74", + "reference": "70a298763b40b213ec087c51c739efcaa90bcd74", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter", + "type": "tidelift" + } + ], + "time": "2025-09-24T06:12:51+00:00" + }, + { + "name": "sebastian/global-state", + "version": "7.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:57:36+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:58:38+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:00:13+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:01:32+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "6.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc", + "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context", + "type": "tidelift" + } + ], + "time": "2025-08-13T04:42:22+00:00" + }, + { + "name": "sebastian/type", + "version": "5.1.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449", + "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/5.1.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/type", + "type": "tidelift" + } + ], + "time": "2025-08-09T06:55:48+00:00" + }, + { + "name": "sebastian/version", + "version": "5.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/5.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-10-09T05:16:32+00:00" + }, + { + "name": "staabm/side-effects-detector", + "version": "1.0.5", + "source": { + "type": "git", + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.6", + "phpunit/phpunit": "^9.6.21", + "symfony/var-dumper": "^5.4.43", + "tomasvotruba/type-coverage": "1.0.0", + "tomasvotruba/unused-public": "1.0.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A static analysis tool to detect side effects in PHP code", + "keywords": [ + "static analysis" + ], + "support": { + "issues": "https://github.com/staabm/side-effects-detector/issues", + "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" + }, + "funding": [ + { + "url": "https://github.com/staabm", + "type": "github" + } + ], + "time": "2024-10-20T05:08:20+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.4.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "58751048de17bae71c5aa0d13cb19d79bca26391" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/58751048de17bae71c5aa0d13cb19d79bca26391", + "reference": "58751048de17bae71c5aa0d13cb19d79bca26391", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v7.4.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-02-09T09:33:46+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.3.1", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "b7489ce515e168639d17feec34b8847c326b0b3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c", + "reference": "b7489ce515e168639d17feec34b8847c326b0b3c", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.3.1" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2025-11-17T20:03:58+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": {}, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.2" + }, + "platform-dev": {}, + "plugin-api-version": "2.9.0" +} diff --git a/dashboard/config/app.php b/dashboard/config/app.php new file mode 100644 index 0000000..a647034 --- /dev/null +++ b/dashboard/config/app.php @@ -0,0 +1,135 @@ + env('APP_NAME', 'Laravel'), + + 'lookback_days' => [ + 'SARI' => 30, + 'ILI' => 30, + 'LBM' => 30, + 'AFI' => 30, + 'NDS' => 30, + 'SEQ' => 30 + ], + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | the application so that it's available within Artisan commands. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. The timezone + | is set to "UTC" by default as it is suitable for most use cases. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by Laravel's translation / localization methods. This option can be + | set to any locale for which you plan to have translation strings. + | + */ + + 'locale' => env('APP_LOCALE', 'en'), + + 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), + + 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is utilized by Laravel's encryption services and should be set + | to a random, 32 character string to ensure that all encrypted values + | are secure. You should do this prior to deploying the application. + | + */ + + 'cipher' => 'AES-256-CBC', + + 'key' => env('APP_KEY'), + + 'previous_keys' => [ + ...array_filter( + explode(',', (string) env('APP_PREVIOUS_KEYS', '')) + ), + ], + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), + 'store' => env('APP_MAINTENANCE_STORE', 'database'), + ], + +]; diff --git a/dashboard/config/auth.php b/dashboard/config/auth.php new file mode 100644 index 0000000..7d1eb0d --- /dev/null +++ b/dashboard/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => env('AUTH_GUARD', 'web'), + 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | which utilizes session storage plus the Eloquent user provider. + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | If you have multiple user tables or models you may configure multiple + | providers to represent the model / table. These providers may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => env('AUTH_MODEL', App\Models\User::class), + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | These configuration options specify the behavior of Laravel's password + | reset functionality, including the table utilized for token storage + | and the user provider that is invoked to actually retrieve users. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the number of seconds before a password confirmation + | window expires and users are asked to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), + +]; diff --git a/dashboard/config/cache.php b/dashboard/config/cache.php new file mode 100644 index 0000000..b32aead --- /dev/null +++ b/dashboard/config/cache.php @@ -0,0 +1,117 @@ + env('CACHE_STORE', 'database'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "array", "database", "file", "memcached", + | "redis", "dynamodb", "octane", + | "failover", "null" + | + */ + + 'stores' => [ + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_CACHE_CONNECTION'), + 'table' => env('DB_CACHE_TABLE', 'cache'), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), + 'lock_table' => env('DB_CACHE_LOCK_TABLE'), + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), + 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + 'failover' => [ + 'driver' => 'failover', + 'stores' => [ + 'database', + 'array', + ], + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, and DynamoDB cache + | stores, there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'), + +]; diff --git a/dashboard/config/database.php b/dashboard/config/database.php new file mode 100644 index 0000000..bdf0a92 --- /dev/null +++ b/dashboard/config/database.php @@ -0,0 +1,210 @@ + env('DB_CONNECTION', 'sqlite'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Below are all of the database connections defined for your application. + | An example configuration is provided for each database system which + | is supported by Laravel. You're free to add / remove connections. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DB_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + 'busy_timeout' => null, + 'journal_mode' => null, + 'synchronous' => null, + 'transaction_mode' => 'DEFERRED', + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + (PHP_VERSION_ID >= 80500 ? \Pdo\Mysql::ATTR_SSL_CA : \PDO::MYSQL_ATTR_SSL_CA) => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'mariadb' => [ + 'driver' => 'mariadb', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + (PHP_VERSION_ID >= 80500 ? \Pdo\Mysql::ATTR_SSL_CA : \PDO::MYSQL_ATTR_SSL_CA) => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => env('DB_SSLMODE', 'prefer'), + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + 'mysql_nphl' => [ + 'driver' => 'mariadb', + 'host' => env('NPHL_DB_HOST', '127.0.0.1'), + 'port' => env('NPHL_DB_PORT', '3306'), + 'database' => env('NPHL_DB_DATABASE', 'laravel'), + 'username' => env('NPHL_DB_USERNAME', 'root'), + 'password' => env('NPHL_DB_PASSWORD', '') + ], + + 'mysql_afi' => [ + 'driver' => 'mysql', + 'host' => env('AFI_DB_HOST', '127.0.0.1'), + 'port' => env('AFI_DB_PORT', '3306'), + 'database' => env('AFI_DB_DATABASE', 'laravel'), + 'username' => env('AFI_DB_USERNAME', 'root'), + 'password' => env('AFI_DB_PASSWORD', '') + ], + + 'mysql_nds' => [ + 'driver' => 'mysql', + 'host' => env('NDS_DB_HOST', '127.0.0.1'), + 'port' => env('NDS_DB_PORT', '3306'), + 'database' => env('NDS_DB_DATABASE', 'laravel'), + 'username' => env('NDS_DB_USERNAME', 'root'), + 'password' => env('NDS_DB_PASSWORD', '') + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run on the database. + | + */ + + 'migrations' => [ + 'table' => 'migrations', + 'update_date_on_publish' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as Memcached. You may define your connection settings here. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-database-'), + 'persistent' => env('REDIS_PERSISTENT', false), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + 'max_retries' => env('REDIS_MAX_RETRIES', 3), + 'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'), + 'backoff_base' => env('REDIS_BACKOFF_BASE', 100), + 'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + 'max_retries' => env('REDIS_MAX_RETRIES', 3), + 'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'), + 'backoff_base' => env('REDIS_BACKOFF_BASE', 100), + 'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000), + ], + + ], + +]; diff --git a/dashboard/config/filesystems.php b/dashboard/config/filesystems.php new file mode 100644 index 0000000..37d8fca --- /dev/null +++ b/dashboard/config/filesystems.php @@ -0,0 +1,80 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Below you may configure as many filesystem disks as necessary, and you + | may even configure multiple disks for the same driver. Examples for + | most supported storage drivers are configured here for reference. + | + | Supported drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app/private'), + 'serve' => true, + 'throw' => false, + 'report' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => rtrim(env('APP_URL', 'http://localhost'), '/').'/storage', + 'visibility' => 'public', + 'throw' => false, + 'report' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + 'report' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/dashboard/config/logging.php b/dashboard/config/logging.php new file mode 100644 index 0000000..75ddaac --- /dev/null +++ b/dashboard/config/logging.php @@ -0,0 +1,139 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => env('LOG_DEPRECATIONS_TRACE', false), + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Laravel + | utilizes the Monolog PHP logging library, which includes a variety + | of powerful log handlers and formatters that you're free to use. + | + | Available drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", "custom", "stack" + | + */ + + 'channels' => [ + + 'stack' => [ + 'driver' => 'stack', + 'channels' => explode(',', (string) env('LOG_STACK', 'single')), + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => env('LOG_DAILY_DAYS', 14), + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), + 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'jobs' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/job_run.log'), + 'level' => 'debug', + 'days' => 60, + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'handler_with' => [ + 'stream' => 'php://stderr', + ], + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + + ], + +]; diff --git a/dashboard/config/mail.php b/dashboard/config/mail.php new file mode 100644 index 0000000..522b284 --- /dev/null +++ b/dashboard/config/mail.php @@ -0,0 +1,118 @@ + env('MAIL_MAILER', 'log'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers that can be used + | when delivering an email. You may specify which one you're using for + | your mailers below. You may also add additional mailers if needed. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "resend", "log", "array", + | "failover", "roundrobin" + | + */ + + 'mailers' => [ + + 'smtp' => [ + 'transport' => 'smtp', + 'scheme' => env('MAIL_SCHEME'), + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', '127.0.0.1'), + 'port' => env('MAIL_PORT', 2525), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'resend' => [ + 'transport' => 'resend', + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + 'retry_after' => 60, + ], + + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + 'retry_after' => 60, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all emails sent by your application to be sent from + | the same address. Here you may specify a name and address that is + | used globally for all emails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + +]; diff --git a/dashboard/config/queue.php b/dashboard/config/queue.php new file mode 100644 index 0000000..79c2c0a --- /dev/null +++ b/dashboard/config/queue.php @@ -0,0 +1,129 @@ + env('QUEUE_CONNECTION', 'database'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection options for every queue backend + | used by your application. An example configuration is provided for + | each backend supported by Laravel. You're also free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", + | "deferred", "background", "failover", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_QUEUE_CONNECTION'), + 'table' => env('DB_QUEUE_TABLE', 'jobs'), + 'queue' => env('DB_QUEUE', 'default'), + 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), + 'queue' => env('BEANSTALKD_QUEUE', 'default'), + 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), + 'block_for' => null, + 'after_commit' => false, + ], + + 'deferred' => [ + 'driver' => 'deferred', + ], + + 'background' => [ + 'driver' => 'background', + ], + + 'failover' => [ + 'driver' => 'failover', + 'connections' => [ + 'database', + 'deferred', + ], + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control how and where failed jobs are stored. Laravel ships with + | support for storing failed jobs in a simple file or in a database. + | + | Supported drivers: "database-uuids", "dynamodb", "file", "null" + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/dashboard/config/services.php b/dashboard/config/services.php new file mode 100644 index 0000000..c093a4f --- /dev/null +++ b/dashboard/config/services.php @@ -0,0 +1,44 @@ + [ + 'key' => env('POSTMARK_API_KEY'), + ], + + 'resend' => [ + 'key' => env('RESEND_API_KEY'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'slack' => [ + 'notifications' => [ + 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), + 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), + ], + ], + + 'nphl_api' => [ + 'url' => env('NPHL_API_URL'), + 'username' => env('NPHL_API_USERNAME'), + 'password' => env('NPHL_API_PASSWORD'), + ], + +]; diff --git a/dashboard/config/session.php b/dashboard/config/session.php new file mode 100644 index 0000000..5b541b7 --- /dev/null +++ b/dashboard/config/session.php @@ -0,0 +1,217 @@ + env('SESSION_DRIVER', 'database'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to expire immediately when the browser is closed then you may + | indicate that via the expire_on_close configuration option. + | + */ + + 'lifetime' => (int) env('SESSION_LIFETIME', 120), + + 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it's stored. All encryption is performed + | automatically by Laravel and you may use the session like normal. + | + */ + + 'encrypt' => env('SESSION_ENCRYPT', false), + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When utilizing the "file" session driver, the session files are placed + | on disk. The default storage location is defined here; however, you + | are free to provide another location where they should be stored. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table to + | be used to store sessions. Of course, a sensible default is defined + | for you; however, you're welcome to change this to another table. + | + */ + + 'table' => env('SESSION_TABLE', 'sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | When using one of the framework's cache driven session backends, you may + | define the cache store which should be used to store the session data + | between requests. This must match one of your defined cache stores. + | + | Affects: "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the session cookie that is created by + | the framework. Typically, you should not need to change this value + | since doing so does not grant a meaningful security improvement. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug((string) env('APP_NAME', 'laravel')).'-session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application, but you're free to change this when necessary. + | + */ + + 'path' => env('SESSION_PATH', '/'), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | This value determines the domain and subdomains the session cookie is + | available to. By default, the cookie will be available to the root + | domain without subdomains. Typically, this shouldn't be changed. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. It's unlikely you should disable this option. + | + */ + + 'http_only' => env('SESSION_HTTP_ONLY', true), + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" to permit secure cross-site requests. + | + | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => env('SESSION_SAME_SITE', 'lax'), + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), + +]; diff --git a/dashboard/database/.gitignore b/dashboard/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/dashboard/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/dashboard/database/factories/UserFactory.php b/dashboard/database/factories/UserFactory.php new file mode 100644 index 0000000..584104c --- /dev/null +++ b/dashboard/database/factories/UserFactory.php @@ -0,0 +1,44 @@ + + */ +class UserFactory extends Factory +{ + /** + * The current password being used by the factory. + */ + protected static ?string $password; + + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'name' => fake()->name(), + 'email' => fake()->unique()->safeEmail(), + 'email_verified_at' => now(), + 'password' => static::$password ??= Hash::make('password'), + 'remember_token' => Str::random(10), + ]; + } + + /** + * Indicate that the model's email address should be unverified. + */ + public function unverified(): static + { + return $this->state(fn (array $attributes) => [ + 'email_verified_at' => null, + ]); + } +} diff --git a/dashboard/database/migrations/0001_01_01_000000_create_users_table.php b/dashboard/database/migrations/0001_01_01_000000_create_users_table.php new file mode 100644 index 0000000..05fb5d9 --- /dev/null +++ b/dashboard/database/migrations/0001_01_01_000000_create_users_table.php @@ -0,0 +1,49 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->rememberToken(); + $table->timestamps(); + }); + + Schema::create('password_reset_tokens', function (Blueprint $table) { + $table->string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + + Schema::create('sessions', function (Blueprint $table) { + $table->string('id')->primary(); + $table->foreignId('user_id')->nullable()->index(); + $table->string('ip_address', 45)->nullable(); + $table->text('user_agent')->nullable(); + $table->longText('payload'); + $table->integer('last_activity')->index(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + Schema::dropIfExists('password_reset_tokens'); + Schema::dropIfExists('sessions'); + } +}; diff --git a/dashboard/database/migrations/0001_01_01_000001_create_cache_table.php b/dashboard/database/migrations/0001_01_01_000001_create_cache_table.php new file mode 100644 index 0000000..ed758bd --- /dev/null +++ b/dashboard/database/migrations/0001_01_01_000001_create_cache_table.php @@ -0,0 +1,35 @@ +string('key')->primary(); + $table->mediumText('value'); + $table->integer('expiration')->index(); + }); + + Schema::create('cache_locks', function (Blueprint $table) { + $table->string('key')->primary(); + $table->string('owner'); + $table->integer('expiration')->index(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('cache'); + Schema::dropIfExists('cache_locks'); + } +}; diff --git a/dashboard/database/migrations/0001_01_01_000002_create_jobs_table.php b/dashboard/database/migrations/0001_01_01_000002_create_jobs_table.php new file mode 100644 index 0000000..425e705 --- /dev/null +++ b/dashboard/database/migrations/0001_01_01_000002_create_jobs_table.php @@ -0,0 +1,57 @@ +id(); + $table->string('queue')->index(); + $table->longText('payload'); + $table->unsignedTinyInteger('attempts'); + $table->unsignedInteger('reserved_at')->nullable(); + $table->unsignedInteger('available_at'); + $table->unsignedInteger('created_at'); + }); + + Schema::create('job_batches', function (Blueprint $table) { + $table->string('id')->primary(); + $table->string('name'); + $table->integer('total_jobs'); + $table->integer('pending_jobs'); + $table->integer('failed_jobs'); + $table->longText('failed_job_ids'); + $table->mediumText('options')->nullable(); + $table->integer('cancelled_at')->nullable(); + $table->integer('created_at'); + $table->integer('finished_at')->nullable(); + }); + + Schema::create('failed_jobs', function (Blueprint $table) { + $table->id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('jobs'); + Schema::dropIfExists('job_batches'); + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/dashboard/database/migrations/2026_03_02_035813_create_surveillances_table.php b/dashboard/database/migrations/2026_03_02_035813_create_surveillances_table.php new file mode 100644 index 0000000..f0537b1 --- /dev/null +++ b/dashboard/database/migrations/2026_03_02_035813_create_surveillances_table.php @@ -0,0 +1,30 @@ +increments('id'); + $table->string('code'); + $table->string('name_en'); + $table->string('name_kh'); + $table->date('start_date'); + $table->date('end_date')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('surveillances'); + } +}; diff --git a/dashboard/database/migrations/2026_03_02_035818_create_surveillance_cases_table.php b/dashboard/database/migrations/2026_03_02_035818_create_surveillance_cases_table.php new file mode 100644 index 0000000..2c3971f --- /dev/null +++ b/dashboard/database/migrations/2026_03_02_035818_create_surveillance_cases_table.php @@ -0,0 +1,46 @@ +bigIncrements('id'); + $table->string('lab_code'); + $table->integer('is_newcase'); + $table->string('sentinel_site_name'); + $table->string('site_province_name'); + $table->unsignedInteger('surveillance_id'); + $table->integer('year_data'); + $table->integer('week_data'); + $table->integer('patient_age_inday'); + $table->string('patient_sex'); + $table->tinyInteger('is_alive'); + $table->string('patient_privince'); + + $table->foreign('surveillance_id') + ->references('id') + ->on('surveillances') + ->onDelete('cascade'); + + $table->index('lab_code'); + $table->index('year_data'); + $table->index('week_data'); + $table->index('site_province_name'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('surveillance_cases'); + } +}; diff --git a/dashboard/database/migrations/2026_03_02_035823_create_case_lab_results_table.php b/dashboard/database/migrations/2026_03_02_035823_create_case_lab_results_table.php new file mode 100644 index 0000000..a2d19c4 --- /dev/null +++ b/dashboard/database/migrations/2026_03_02_035823_create_case_lab_results_table.php @@ -0,0 +1,33 @@ +bigIncrements('id'); + $table->string('lab_code'); + $table->integer('is_positive'); + $table->string('pathogen_name'); + $table->string('subtype')->nullable(); + $table->string('indicator')->nullable(); + + $table->index('lab_code'); + $table->index('pathogen_name'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('case_lab_results'); + } +}; diff --git a/dashboard/database/migrations/2026_03_02_035828_create_last_synced_logs_table.php b/dashboard/database/migrations/2026_03_02_035828_create_last_synced_logs_table.php new file mode 100644 index 0000000..7dd2e24 --- /dev/null +++ b/dashboard/database/migrations/2026_03_02_035828_create_last_synced_logs_table.php @@ -0,0 +1,32 @@ +bigIncrements('id'); + $table->unsignedInteger('surveillance_id'); + $table->dateTime('last_synced_date'); + + $table->foreign('surveillance_id') + ->references('id') + ->on('surveillances') + ->onDelete('cascade'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('last_synced_logs'); + } +}; diff --git a/dashboard/database/migrations/2026_03_02_060959_add_case_date_to_surveillance_cases.php b/dashboard/database/migrations/2026_03_02_060959_add_case_date_to_surveillance_cases.php new file mode 100644 index 0000000..04a2d0b --- /dev/null +++ b/dashboard/database/migrations/2026_03_02_060959_add_case_date_to_surveillance_cases.php @@ -0,0 +1,28 @@ +date('case_date')->after('lab_code'); + $table->index('case_date'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('surveillance_cases', function (Blueprint $table) { + // + }); + } +}; diff --git a/dashboard/database/migrations/2026_03_02_061723_add_indexes_to_surveillance_tables.php b/dashboard/database/migrations/2026_03_02_061723_add_indexes_to_surveillance_tables.php new file mode 100644 index 0000000..457f3fe --- /dev/null +++ b/dashboard/database/migrations/2026_03_02_061723_add_indexes_to_surveillance_tables.php @@ -0,0 +1,26 @@ +index(['surveillance_id', 'case_date'], 'idx_surveillance_date'); + $table->index('lab_code', 'idx_lab_code'); + $table->index(['site_province_name', 'case_date'], 'idx_province_date'); + }); + } + + public function down(): void + { + Schema::table('surveillance_cases', function (Blueprint $table) { + $table->dropIndex('idx_surveillance_date'); + $table->dropIndex('idx_lab_code'); + $table->dropIndex('idx_province_date'); + }); + } +}; \ No newline at end of file diff --git a/dashboard/database/seeders/DatabaseSeeder.php b/dashboard/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..aa0a246 --- /dev/null +++ b/dashboard/database/seeders/DatabaseSeeder.php @@ -0,0 +1,23 @@ +call( + [ + SurveillanceSeeder::class, + LongitudinalSurveillanceSeeder::class, + ] + ); + } +} diff --git a/dashboard/database/seeders/LongitudinalSurveillanceSeeder.php b/dashboard/database/seeders/LongitudinalSurveillanceSeeder.php new file mode 100644 index 0000000..9877230 --- /dev/null +++ b/dashboard/database/seeders/LongitudinalSurveillanceSeeder.php @@ -0,0 +1,83 @@ +copy(); + + while ($current <= $end) { + + foreach ($surveillances as $surveillance) { + + // seasonal influenza peak (Nov–Feb) + $month = $current->month; + $seasonFactor = in_array($month, [11, 12, 1, 2]) ? 1.5 : 1; + + // covid surge 2020–2022 + $covidFactor = ($current->year <= 2022) ? 1.8 : 1; + + $baseCases = rand(5, 15); + $weeklyCases = (int) ($baseCases * $seasonFactor * $covidFactor); + + for ($i = 0; $i < $weeklyCases; $i++) { + + $labCode = strtoupper($surveillance->code) . + '-' . $current->format('Y') . + '-' . uniqid(); + + DB::table('analytic.surveillance_cases')->insert([ + 'lab_code' => $labCode, + 'is_newcase' => 1, + 'sentinel_site_name' => 'Sentinel A', + 'site_province_name' => $provinces[array_rand($provinces)], + 'surveillance_id' => $surveillance->id, + 'year_data' => $current->year, + 'week_data' => $current->week, + 'case_date' => $current->copy(), + 'patient_age_inday' => rand(100, 25000), + 'patient_sex' => rand(0, 1) ? 'M' : 'F', + 'is_alive' => rand(0, 10) > 1 ? 1 : 0, + 'patient_privince' => $provinces[array_rand($provinces)] + ]); + + $pathogen = rand(0, 1) + ? 'Influenza A' + : 'SARS-CoV-2'; + + $isPositive = rand(0, 100) < 35 ? 1 : 0; + + DB::table('analytic.case_lab_results')->insert([ + 'lab_code' => $labCode, + 'is_positive' => $isPositive, + 'pathogen_name' => $pathogen, + 'subtype' => null, + 'indicator' => null + ]); + } + } + + $current->addWeek(); + } + } +} \ No newline at end of file diff --git a/dashboard/database/seeders/SurveillanceDataSeeder.php b/dashboard/database/seeders/SurveillanceDataSeeder.php new file mode 100644 index 0000000..faae86f --- /dev/null +++ b/dashboard/database/seeders/SurveillanceDataSeeder.php @@ -0,0 +1,57 @@ +subDays(rand(0, 90)); + + $case = SurveillanceCase::create([ + 'lab_code' => uniqid('LAB'), + 'case_date' => $date->toDateString(), + 'is_newcase' => 1, + 'sentinel_site_name' => 'Sentinel Site ' . rand(1, 5), + 'site_province_name' => $provinces[array_rand($provinces)], + 'surveillance_id' => $program->id, + 'year_data' => $date->year, + 'week_data' => $date->weekOfYear, + 'patient_age_inday' => rand(100, 25000), + 'patient_sex' => rand(0, 1) ? 'M' : 'F', + 'is_alive' => 1, + 'patient_privince' => $provinces[array_rand($provinces)] + ]); + + foreach ($pathogens as $pathogen) { + + $positiveRate = $pathogen === 'Influenza A' ? 0.2 : + ($pathogen === 'Influenza B' ? 0.15 : 0.1); + + CaseLabResult::create([ + 'lab_code' => $case->lab_code, + 'is_positive' => rand(0, 100) < ($positiveRate * 100) ? 1 : 0, + 'pathogen_name' => $pathogen, + 'subtype' => null, + 'indicator' => null + ]); + } + } + } + } +} \ No newline at end of file diff --git a/dashboard/database/seeders/SurveillanceSeeder.php b/dashboard/database/seeders/SurveillanceSeeder.php new file mode 100644 index 0000000..71deac8 --- /dev/null +++ b/dashboard/database/seeders/SurveillanceSeeder.php @@ -0,0 +1,36 @@ + 'SARI', + 'name_en' => 'Severe Acute Respiratory Infection', + 'name_kh' => 'SARI', + 'start_date' => '2026-01-01', + 'end_date' => null + ], + [ + 'code' => 'ILI', + 'name_en' => 'Influenza Like Illness', + 'name_kh' => 'ILI', + 'start_date' => '2026-01-01', + 'end_date' => null + ], + [ + 'code' => 'AFI', + 'name_en' => 'Acute Febrile Illness', + 'name_kh' => 'AFI', + 'start_date' => '2026-01-01', + 'end_date' => null + ], + ]); + } +} \ No newline at end of file diff --git a/dashboard/package-lock.json b/dashboard/package-lock.json new file mode 100644 index 0000000..51277f3 --- /dev/null +++ b/dashboard/package-lock.json @@ -0,0 +1,3253 @@ +{ + "name": "www", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "@tailwindcss/vite": "^4.0.0", + "alpinejs": "^3.4.2", + "autoprefixer": "^10.4.2", + "axios": "^1.11.0", + "concurrently": "^9.0.1", + "laravel-vite-plugin": "^2.0.0", + "postcss": "^8.4.31", + "tailwindcss": "^3.1.0", + "vite": "^7.0.7" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.3.tgz", + "integrity": "sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.3.tgz", + "integrity": "sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.3.tgz", + "integrity": "sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.3.tgz", + "integrity": "sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.3.tgz", + "integrity": "sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.3.tgz", + "integrity": "sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.3.tgz", + "integrity": "sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.3.tgz", + "integrity": "sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.3.tgz", + "integrity": "sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.3.tgz", + "integrity": "sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.3.tgz", + "integrity": "sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.3.tgz", + "integrity": "sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.3.tgz", + "integrity": "sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.3.tgz", + "integrity": "sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.3.tgz", + "integrity": "sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.3.tgz", + "integrity": "sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.3.tgz", + "integrity": "sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.3.tgz", + "integrity": "sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.3.tgz", + "integrity": "sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.3.tgz", + "integrity": "sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.3.tgz", + "integrity": "sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.3.tgz", + "integrity": "sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.3.tgz", + "integrity": "sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.3.tgz", + "integrity": "sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.3.tgz", + "integrity": "sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.11.tgz", + "integrity": "sha512-h9wegbZDPurxG22xZSoWtdzc41/OlNEUQERNqI/0fOwa2aVlWGu7C35E/x6LDyD3lgtztFSSjKZyuVM0hxhbgA==", + "dev": true, + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1" + } + }, + "node_modules/@tailwindcss/node": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.0.tgz", + "integrity": "sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==", + "dev": true, + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.21.0", + "jiti": "^2.6.1", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.3.0" + } + }, + "node_modules/@tailwindcss/node/node_modules/tailwindcss": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.0.tgz", + "integrity": "sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==", + "dev": true + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.0.tgz", + "integrity": "sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==", + "dev": true, + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.3.0", + "@tailwindcss/oxide-darwin-arm64": "4.3.0", + "@tailwindcss/oxide-darwin-x64": "4.3.0", + "@tailwindcss/oxide-freebsd-x64": "4.3.0", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.0", + "@tailwindcss/oxide-linux-arm64-gnu": "4.3.0", + "@tailwindcss/oxide-linux-arm64-musl": "4.3.0", + "@tailwindcss/oxide-linux-x64-gnu": "4.3.0", + "@tailwindcss/oxide-linux-x64-musl": "4.3.0", + "@tailwindcss/oxide-wasm32-wasi": "4.3.0", + "@tailwindcss/oxide-win32-arm64-msvc": "4.3.0", + "@tailwindcss/oxide-win32-x64-msvc": "4.3.0" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.0.tgz", + "integrity": "sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.0.tgz", + "integrity": "sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.0.tgz", + "integrity": "sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.0.tgz", + "integrity": "sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.0.tgz", + "integrity": "sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.0.tgz", + "integrity": "sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.0.tgz", + "integrity": "sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.0.tgz", + "integrity": "sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.0.tgz", + "integrity": "sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.0.tgz", + "integrity": "sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "optional": true, + "dependencies": { + "@emnapi/core": "^1.10.0", + "@emnapi/runtime": "^1.10.0", + "@emnapi/wasi-threads": "^1.2.1", + "@napi-rs/wasm-runtime": "^1.1.4", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.0.tgz", + "integrity": "sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.0.tgz", + "integrity": "sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/vite": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.0.tgz", + "integrity": "sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==", + "dev": true, + "dependencies": { + "@tailwindcss/node": "4.3.0", + "@tailwindcss/oxide": "4.3.0", + "tailwindcss": "4.3.0" + }, + "peerDependencies": { + "vite": "^5.2.0 || ^6 || ^7 || ^8" + } + }, + "node_modules/@tailwindcss/vite/node_modules/tailwindcss": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.0.tgz", + "integrity": "sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==", + "dev": true + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true + }, + "node_modules/@vue/reactivity": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", + "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", + "dev": true, + "dependencies": { + "@vue/shared": "3.1.5" + } + }, + "node_modules/@vue/shared": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", + "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==", + "dev": true + }, + "node_modules/alpinejs": { + "version": "3.15.12", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.15.12.tgz", + "integrity": "sha512-nJvPAQVNPdZZ0NrExJ/kzQco3ijR8LwvCOadQecllESiqT4NyZ/57sN9V2XyvhlBGAbmlKYgeWZvYdKq99ij/Q==", + "dev": true, + "dependencies": { + "@vue/reactivity": "~3.1.1" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz", + "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.28.2", + "caniuse-lite": "^1.0.30001787", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.16.0.tgz", + "integrity": "sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.16.0", + "form-data": "^4.0.5", + "proxy-from-env": "^2.1.0" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.29", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.29.tgz", + "integrity": "sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ==", + "dev": true, + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001792", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz", + "integrity": "sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/concurrently": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.2.1.tgz", + "integrity": "sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==", + "dev": true, + "dependencies": { + "chalk": "4.1.2", + "rxjs": "7.8.2", + "shell-quote": "1.8.3", + "supports-color": "8.1.1", + "tree-kill": "1.2.2", + "yargs": "17.7.2" + }, + "bin": { + "conc": "dist/bin/concurrently.js", + "concurrently": "dist/bin/concurrently.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.353", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.353.tgz", + "integrity": "sha512-kOrWphBi8TOZyiJZqsgqIle0lw+tzmnQK83pV9dZUd01Nm2POECSyFQMAuarzZdYqQW7FH9RaYOuaRo3h+bQ3w==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/enhanced-resolve": { + "version": "5.21.2", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.2.tgz", + "integrity": "sha512-xe9vQb5kReirPUxgQrXA3ihgbCqssmTiM7cOZ+Gzu+VeGWgpV98lLZvp0dl4yriyAePcewxGUs9UpKD8PET9KQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", + "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.7", + "@esbuild/android-arm": "0.27.7", + "@esbuild/android-arm64": "0.27.7", + "@esbuild/android-x64": "0.27.7", + "@esbuild/darwin-arm64": "0.27.7", + "@esbuild/darwin-x64": "0.27.7", + "@esbuild/freebsd-arm64": "0.27.7", + "@esbuild/freebsd-x64": "0.27.7", + "@esbuild/linux-arm": "0.27.7", + "@esbuild/linux-arm64": "0.27.7", + "@esbuild/linux-ia32": "0.27.7", + "@esbuild/linux-loong64": "0.27.7", + "@esbuild/linux-mips64el": "0.27.7", + "@esbuild/linux-ppc64": "0.27.7", + "@esbuild/linux-riscv64": "0.27.7", + "@esbuild/linux-s390x": "0.27.7", + "@esbuild/linux-x64": "0.27.7", + "@esbuild/netbsd-arm64": "0.27.7", + "@esbuild/netbsd-x64": "0.27.7", + "@esbuild/openbsd-arm64": "0.27.7", + "@esbuild/openbsd-x64": "0.27.7", + "@esbuild/openharmony-arm64": "0.27.7", + "@esbuild/sunos-x64": "0.27.7", + "@esbuild/win32-arm64": "0.27.7", + "@esbuild/win32-ia32": "0.27.7", + "@esbuild/win32-x64": "0.27.7" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz", + "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz", + "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.16.2", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz", + "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==", + "dev": true, + "dependencies": { + "hasown": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jiti": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz", + "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==", + "dev": true, + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/laravel-vite-plugin": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-2.1.0.tgz", + "integrity": "sha512-z+ck2BSV6KWtYcoIzk9Y5+p4NEjqM+Y4i8/H+VZRLq0OgNjW2DqyADquwYu5j8qRvaXwzNmfCWl1KrMlV1zpsg==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.1.0" + }, + "bin": { + "clean-orphaned-assets": "bin/clean.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^7.0.0" + } + }, + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "dev": true, + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.38", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.38.tgz", + "integrity": "sha512-3qT/88Y3FbH/Kx4szpQQ4HzUbVrHPKTLVpVocKiLfoYvw9XSGOX2FmD2d6DrXbVYyAQTF2HeF6My8jmzx7/CRw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz", + "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/proxy-from-env": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz", + "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.12", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz", + "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.3.tgz", + "integrity": "sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.3", + "@rollup/rollup-android-arm64": "4.60.3", + "@rollup/rollup-darwin-arm64": "4.60.3", + "@rollup/rollup-darwin-x64": "4.60.3", + "@rollup/rollup-freebsd-arm64": "4.60.3", + "@rollup/rollup-freebsd-x64": "4.60.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.3", + "@rollup/rollup-linux-arm-musleabihf": "4.60.3", + "@rollup/rollup-linux-arm64-gnu": "4.60.3", + "@rollup/rollup-linux-arm64-musl": "4.60.3", + "@rollup/rollup-linux-loong64-gnu": "4.60.3", + "@rollup/rollup-linux-loong64-musl": "4.60.3", + "@rollup/rollup-linux-ppc64-gnu": "4.60.3", + "@rollup/rollup-linux-ppc64-musl": "4.60.3", + "@rollup/rollup-linux-riscv64-gnu": "4.60.3", + "@rollup/rollup-linux-riscv64-musl": "4.60.3", + "@rollup/rollup-linux-s390x-gnu": "4.60.3", + "@rollup/rollup-linux-x64-gnu": "4.60.3", + "@rollup/rollup-linux-x64-musl": "4.60.3", + "@rollup/rollup-openbsd-x64": "4.60.3", + "@rollup/rollup-openharmony-arm64": "4.60.3", + "@rollup/rollup-win32-arm64-msvc": "4.60.3", + "@rollup/rollup-win32-ia32-msvc": "4.60.3", + "@rollup/rollup-win32-x64-gnu": "4.60.3", + "@rollup/rollup-win32-x64-msvc": "4.60.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/shell-quote": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", + "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz", + "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "tinyglobby": "^0.2.11", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.19", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz", + "integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.7", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/tapable": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", + "dev": true, + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.3.tgz", + "integrity": "sha512-/4XH147Ui7OGTjg3HbdWe5arnZQSbfuRzdr9Ec7TQi5I7R+ir0Rlc9GIvD4v0XZurELqA035KVXJXpR61xhiTA==", + "dev": true, + "dependencies": { + "esbuild": "^0.27.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-plugin-full-reload": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", + "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "node_modules/vite/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + } + } +} diff --git a/dashboard/package.json b/dashboard/package.json new file mode 100644 index 0000000..2ea7e1d --- /dev/null +++ b/dashboard/package.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://www.schemastore.org/package.json", + "private": true, + "type": "module", + "scripts": { + "build": "vite build", + "dev": "vite" + }, + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "@tailwindcss/vite": "^4.0.0", + "alpinejs": "^3.4.2", + "autoprefixer": "^10.4.2", + "axios": "^1.11.0", + "concurrently": "^9.0.1", + "laravel-vite-plugin": "^2.0.0", + "postcss": "^8.4.31", + "tailwindcss": "^3.1.0", + "vite": "^7.0.7" + } +} diff --git a/dashboard/phpunit.xml b/dashboard/phpunit.xml new file mode 100644 index 0000000..d703241 --- /dev/null +++ b/dashboard/phpunit.xml @@ -0,0 +1,35 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + + + diff --git a/dashboard/postcss.config.js b/dashboard/postcss.config.js new file mode 100644 index 0000000..49c0612 --- /dev/null +++ b/dashboard/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/dashboard/public/.htaccess b/dashboard/public/.htaccess new file mode 100644 index 0000000..b574a59 --- /dev/null +++ b/dashboard/public/.htaccess @@ -0,0 +1,25 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Handle X-XSRF-Token Header + RewriteCond %{HTTP:x-xsrf-token} . + RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/dashboard/public/favicon.ico b/dashboard/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/dashboard/public/geo/cambodia_provinces.geojson b/dashboard/public/geo/cambodia_provinces.geojson new file mode 100644 index 0000000..b4f4681 --- /dev/null +++ b/dashboard/public/geo/cambodia_provinces.geojson @@ -0,0 +1,99971 @@ +{ + "type": "FeatureCollection", + "name": "khm_admbnda_adm1_gov_20181004", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "Shape_Leng": 4.3257240538000001, + "Shape_Area": 0.51355572794000004, + "ADM1_EN": "Banteay Meanchey", + "ADM1_PCODE": "KH01", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 103.422485352000081, + 13.733703613000046 + ], + [ + 103.425109863000046, + 13.736328125000057 + ], + [ + 103.428710937000062, + 13.736328125000057 + ], + [ + 103.425720215000069, + 13.733093262000068 + ], + [ + 103.422485352000081, + 13.733703613000046 + ] + ] + ], + [ + [ + [ + 103.422485352000081, + 13.733703613000046 + ], + [ + 103.421691895000038, + 13.729492187000062 + ], + [ + 103.424926758000083, + 13.727478027000075 + ], + [ + 103.427673340000069, + 13.72491455100004 + ], + [ + 103.424316406000059, + 13.722900391000053 + ], + [ + 103.420898437000062, + 13.722900391000053 + ], + [ + 103.422119141000053, + 13.718688965000069 + ], + [ + 103.423095703000058, + 13.715881348000039 + ], + [ + 103.421325684000067, + 13.712707520000038 + ], + [ + 103.421691895000038, + 13.708679199000073 + ], + [ + 103.424499512000068, + 13.706481934000067 + ], + [ + 103.428527832000043, + 13.705078125000057 + ], + [ + 103.430114746000072, + 13.700500488000046 + ], + [ + 103.432312012000068, + 13.696472168000071 + ], + [ + 103.434509277000075, + 13.694519043000071 + ], + [ + 103.437927246000072, + 13.693481445000032 + ], + [ + 103.439270020000038, + 13.69030761700003 + ], + [ + 103.437683105000076, + 13.686889648000033 + ], + [ + 103.435119629000042, + 13.684875488000046 + ], + [ + 103.432922363000046, + 13.681884766000053 + ], + [ + 103.428100586000085, + 13.679870605000076 + ], + [ + 103.423278809000067, + 13.677917480000076 + ], + [ + 103.421325684000067, + 13.67468261700003 + ], + [ + 103.417724609000061, + 13.67272949200003 + ], + [ + 103.413513184000067, + 13.672119141000053 + ], + [ + 103.413513184000067, + 13.668090820000032 + ], + [ + 103.409301758000083, + 13.665527344000054 + ], + [ + 103.406494141000053, + 13.663696289000029 + ], + [ + 103.406127930000082, + 13.659301758000026 + ], + [ + 103.403320312000062, + 13.657287598000039 + ], + [ + 103.400878906000059, + 13.655090332000043 + ], + [ + 103.401672363000046, + 13.651489258000026 + ], + [ + 103.399291992000087, + 13.64929199200003 + ], + [ + 103.396484375000057, + 13.646118164000029 + ], + [ + 103.398315430000082, + 13.642272949000073 + ], + [ + 103.402282715000069, + 13.641723633000026 + ], + [ + 103.404724121000072, + 13.639709473000039 + ], + [ + 103.405090332000043, + 13.635681152000075 + ], + [ + 103.407714844000054, + 13.633483887000068 + ], + [ + 103.405273437000062, + 13.63171386700003 + ], + [ + 103.400512695000032, + 13.633300781000059 + ], + [ + 103.397277832000043, + 13.63311767600004 + ], + [ + 103.395507812000062, + 13.630310059000067 + ], + [ + 103.396301270000038, + 13.625671387000068 + ], + [ + 103.393920898000033, + 13.623107910000044 + ], + [ + 103.390319824000073, + 13.622314453000058 + ], + [ + 103.391723633000083, + 13.619689941000047 + ], + [ + 103.394897461000085, + 13.618103027000075 + ], + [ + 103.397888184000067, + 13.615295410000044 + ], + [ + 103.398071289000086, + 13.612121582000043 + ], + [ + 103.395324707000043, + 13.609313965000069 + ], + [ + 103.399108887000068, + 13.607910156000059 + ], + [ + 103.401672363000046, + 13.612121582000043 + ], + [ + 103.407104492000087, + 13.611694336000028 + ], + [ + 103.40850830100004, + 13.608703613000046 + ], + [ + 103.407104492000087, + 13.604492187000062 + ], + [ + 103.410888672000056, + 13.603088379000042 + ], + [ + 103.414123535000044, + 13.601074219000054 + ], + [ + 103.414916992000087, + 13.597290039000029 + ], + [ + 103.412902832000043, + 13.594299316000047 + ], + [ + 103.40850830100004, + 13.593872070000032 + ], + [ + 103.404296875000057, + 13.591491699000073 + ], + [ + 103.404724121000072, + 13.588073730000076 + ], + [ + 103.407714844000054, + 13.587524414000029 + ], + [ + 103.410522461000085, + 13.585693359000061 + ], + [ + 103.412292480000076, + 13.583312988000046 + ], + [ + 103.408081055000082, + 13.582519531000059 + ], + [ + 103.408081055000082, + 13.578674316000047 + ], + [ + 103.411926270000038, + 13.57647705100004 + ], + [ + 103.41632080100004, + 13.579101562000062 + ], + [ + 103.415283203000058, + 13.574279785000044 + ], + [ + 103.413085937000062, + 13.571105957000043 + ], + [ + 103.409118652000075, + 13.570678711000028 + ], + [ + 103.405883789000086, + 13.570678711000028 + ], + [ + 103.403076172000056, + 13.569274902000075 + ], + [ + 103.405700684000067, + 13.567077637000068 + ], + [ + 103.40850830100004, + 13.566528320000032 + ], + [ + 103.406677246000072, + 13.563476562000062 + ], + [ + 103.409301758000083, + 13.561523437000062 + ], + [ + 103.413696289000086, + 13.561889648000033 + ], + [ + 103.414306641000053, + 13.559082031000059 + ], + [ + 103.411926270000038, + 13.556091309000067 + ], + [ + 103.410278320000032, + 13.551513672000056 + ], + [ + 103.414123535000044, + 13.548889160000044 + ], + [ + 103.416503906000059, + 13.545898437000062 + ], + [ + 103.417907715000069, + 13.543090820000032 + ], + [ + 103.415283203000058, + 13.540527344000054 + ], + [ + 103.416503906000059, + 13.536682129000042 + ], + [ + 103.415100098000039, + 13.533691406000059 + ], + [ + 103.417724609000061, + 13.530517578000058 + ], + [ + 103.413696289000086, + 13.528930664000029 + ], + [ + 103.413696289000086, + 13.524902344000054 + ], + [ + 103.412902832000043, + 13.520690918000071 + ], + [ + 103.410278320000032, + 13.518127441000047 + ], + [ + 103.407104492000087, + 13.517089844000054 + ], + [ + 103.405517578000058, + 13.513671875000057 + ], + [ + 103.406921387000068, + 13.510925293000071 + ], + [ + 103.409301758000083, + 13.509277344000054 + ], + [ + 103.410705566000047, + 13.50671386700003 + ], + [ + 103.409729004000042, + 13.503295898000033 + ], + [ + 103.412109375000057, + 13.500671387000068 + ], + [ + 103.407897949000073, + 13.499084473000039 + ], + [ + 103.407104492000087, + 13.494873047000056 + ], + [ + 103.403930664000086, + 13.497924805000025 + ], + [ + 103.402526855000076, + 13.493530273000033 + ], + [ + 103.403503418000071, + 13.489318848000039 + ], + [ + 103.401306152000075, + 13.486694336000028 + ], + [ + 103.402282715000069, + 13.483703613000046 + ], + [ + 103.402526855000076, + 13.479309082000043 + ], + [ + 103.400329590000069, + 13.475708008000026 + ], + [ + 103.403076172000056, + 13.471496582000043 + ], + [ + 103.406921387000068, + 13.470275879000042 + ], + [ + 103.411071777000075, + 13.467895508000026 + ], + [ + 103.413879395000038, + 13.46569824200003 + ], + [ + 103.412902832000043, + 13.461914062000062 + ], + [ + 103.409118652000075, + 13.458679199000073 + ], + [ + 103.406494141000053, + 13.456726074000073 + ], + [ + 103.403930664000086, + 13.453491211000028 + ], + [ + 103.402709961000085, + 13.449707031000059 + ], + [ + 103.402099609000061, + 13.445678711000028 + ], + [ + 103.401489258000083, + 13.440917969000054 + ], + [ + 103.40069580100004, + 13.435729980000076 + ], + [ + 103.397888184000067, + 13.431518555000025 + ], + [ + 103.395874023000033, + 13.427673340000069 + ], + [ + 103.394104004000042, + 13.423889160000044 + ], + [ + 103.393920898000033, + 13.418701172000056 + ], + [ + 103.394470215000069, + 13.413696289000029 + ], + [ + 103.397277832000043, + 13.411071777000075 + ], + [ + 103.400512695000032, + 13.40850830100004 + ], + [ + 103.402709961000085, + 13.405090332000043 + ], + [ + 103.403076172000056, + 13.401123047000056 + ], + [ + 103.406921387000068, + 13.397888184000067 + ], + [ + 103.409118652000075, + 13.393493652000075 + ], + [ + 103.410095215000069, + 13.390686035000044 + ], + [ + 103.411682129000042, + 13.388122559000067 + ], + [ + 103.412292480000076, + 13.383911133000026 + ], + [ + 103.411926270000038, + 13.379272461000028 + ], + [ + 103.413879395000038, + 13.375915527000075 + ], + [ + 103.414916992000087, + 13.371520996000072 + ], + [ + 103.416076660000044, + 13.368286133000026 + ], + [ + 103.414123535000044, + 13.364685059000067 + ], + [ + 103.409301758000083, + 13.363708496000072 + ], + [ + 103.405517578000058, + 13.363098145000038 + ], + [ + 103.402282715000069, + 13.362487793000071 + ], + [ + 103.398925781000059, + 13.361694336000028 + ], + [ + 103.395507812000062, + 13.358520508000026 + ], + [ + 103.392089844000054, + 13.360473633000026 + ], + [ + 103.387878418000071, + 13.363525391000053 + ], + [ + 103.385498047000056, + 13.36608886700003 + ], + [ + 103.382507324000073, + 13.368530273000033 + ], + [ + 103.378479004000042, + 13.370910645000038 + ], + [ + 103.374511719000054, + 13.373107910000044 + ], + [ + 103.370300293000071, + 13.374511719000054 + ], + [ + 103.366699219000054, + 13.376708984000061 + ], + [ + 103.362487793000071, + 13.378295898000033 + ], + [ + 103.35772705100004, + 13.379882812000062 + ], + [ + 103.352722168000071, + 13.381286621000072 + ], + [ + 103.347717285000044, + 13.380310059000067 + ], + [ + 103.342895508000083, + 13.380310059000067 + ], + [ + 103.339111328000058, + 13.380126953000058 + ], + [ + 103.334472656000059, + 13.380493164000029 + ], + [ + 103.330322266000053, + 13.380493164000029 + ], + [ + 103.326293945000032, + 13.380676270000038 + ], + [ + 103.323303223000039, + 13.380920410000044 + ], + [ + 103.320312500000057, + 13.381286621000072 + ], + [ + 103.31671142600004, + 13.383300781000059 + ], + [ + 103.314270020000038, + 13.38171386700003 + ], + [ + 103.309875488000046, + 13.381530762000068 + ], + [ + 103.306518555000082, + 13.38171386700003 + ], + [ + 103.302673340000069, + 13.381896973000039 + ], + [ + 103.299072266000053, + 13.382324219000054 + ], + [ + 103.294494629000042, + 13.38311767600004 + ], + [ + 103.290710449000073, + 13.384277344000054 + ], + [ + 103.286926270000038, + 13.385498047000056 + ], + [ + 103.283325195000032, + 13.386474609000061 + ], + [ + 103.278686523000033, + 13.386901855000076 + ], + [ + 103.273681641000053, + 13.386474609000061 + ], + [ + 103.267517090000069, + 13.385681152000075 + ], + [ + 103.262512207000043, + 13.383728027000075 + ], + [ + 103.257507324000073, + 13.384094238000046 + ], + [ + 103.253479004000042, + 13.385681152000075 + ], + [ + 103.248718262000068, + 13.384521484000061 + ], + [ + 103.243286133000083, + 13.384887695000032 + ], + [ + 103.238708496000072, + 13.385498047000056 + ], + [ + 103.234924316000047, + 13.385681152000075 + ], + [ + 103.230285645000038, + 13.386291504000042 + ], + [ + 103.227111816000047, + 13.386718750000057 + ], + [ + 103.222717285000044, + 13.387084961000028 + ], + [ + 103.216918945000032, + 13.387329102000024 + ], + [ + 103.213928223000039, + 13.389709473000039 + ], + [ + 103.210693359000061, + 13.391723633000026 + ], + [ + 103.207092285000044, + 13.392517090000069 + ], + [ + 103.203125, + 13.393310547000056 + ], + [ + 103.198730469000054, + 13.393920898000033 + ], + [ + 103.195312500000057, + 13.395690918000071 + ], + [ + 103.193115234000061, + 13.397521973000039 + ], + [ + 103.190490723000039, + 13.398681641000053 + ], + [ + 103.186889648000033, + 13.40069580100004 + ], + [ + 103.185302734000061, + 13.405517578000058 + ], + [ + 103.182128906000059, + 13.408325195000032 + ], + [ + 103.178710937000062, + 13.410095215000069 + ], + [ + 103.174072266000053, + 13.411071777000075 + ], + [ + 103.168518066000047, + 13.411071777000075 + ], + [ + 103.165283203000058, + 13.410278320000032 + ], + [ + 103.162475586000085, + 13.407470703000058 + ], + [ + 103.159729004000042, + 13.405700684000067 + ], + [ + 103.156494141000053, + 13.403503418000071 + ], + [ + 103.153503418000071, + 13.405700684000067 + ], + [ + 103.151489258000083, + 13.407897949000073 + ], + [ + 103.149719238000046, + 13.411315918000071 + ], + [ + 103.146728516000053, + 13.411926270000038 + ], + [ + 103.142517090000069, + 13.411926270000038 + ], + [ + 103.139526367000087, + 13.411926270000038 + ], + [ + 103.135925293000071, + 13.411682129000042 + ], + [ + 103.132080078000058, + 13.411499023000033 + ], + [ + 103.127685547000056, + 13.411499023000033 + ], + [ + 103.124328613000046, + 13.411682129000042 + ], + [ + 103.119506836000085, + 13.410095215000069 + ], + [ + 103.116088867000087, + 13.409729004000042 + ], + [ + 103.112915039000086, + 13.410705566000047 + ], + [ + 103.111511230000076, + 13.406677246000072 + ], + [ + 103.108276367000087, + 13.405700684000067 + ], + [ + 103.105285645000038, + 13.404724121000072 + ], + [ + 103.101928711000085, + 13.404113770000038 + ], + [ + 103.098083496000072, + 13.406311035000044 + ], + [ + 103.095886230000076, + 13.401672363000046 + ], + [ + 103.093505859000061, + 13.399475098000039 + ], + [ + 103.090515137000068, + 13.398498535000044 + ], + [ + 103.086730957000043, + 13.398315430000025 + ], + [ + 103.083312988000046, + 13.397888184000067 + ], + [ + 103.079711914000086, + 13.398925781000059 + ], + [ + 103.076293945000032, + 13.397277832000043 + ], + [ + 103.070922852000081, + 13.395874023000033 + ], + [ + 103.065917969000054, + 13.394470215000069 + ], + [ + 103.060485840000069, + 13.393127441000047 + ], + [ + 103.055725098000039, + 13.392272949000073 + ], + [ + 103.051513672000056, + 13.392272949000073 + ], + [ + 103.048095703000058, + 13.391906738000046 + ], + [ + 103.044128418000071, + 13.391906738000046 + ], + [ + 103.041076660000044, + 13.394287109000061 + ], + [ + 103.038513184000067, + 13.396118164000029 + ], + [ + 103.035522461000085, + 13.397521973000039 + ], + [ + 103.032287598000039, + 13.396911621000072 + ], + [ + 103.029113770000038, + 13.395507812000062 + ], + [ + 103.024108887000068, + 13.394104004000042 + ], + [ + 103.020080566000047, + 13.393493652000075 + ], + [ + 103.017517090000069, + 13.392089844000054 + ], + [ + 103.015502930000082, + 13.388916016000053 + ], + [ + 103.013305664000086, + 13.38507080100004 + ], + [ + 103.009704590000069, + 13.382507324000073 + ], + [ + 103.004699707000043, + 13.381286621000072 + ], + [ + 103.003906250000057, + 13.378112793000071 + ], + [ + 103.001098633000083, + 13.375671387000068 + ], + [ + 102.997497559000067, + 13.377319336000028 + ], + [ + 102.996093750000057, + 13.379882812000062 + ], + [ + 102.991516113000046, + 13.381103516000053 + ], + [ + 102.988098145000038, + 13.378906250000057 + ], + [ + 102.986877441000047, + 13.376098633000026 + ], + [ + 102.984313965000069, + 13.361083984000061 + ], + [ + 102.924682617000087, + 13.365478516000053 + ], + [ + 102.921508789000086, + 13.365478516000053 + ], + [ + 102.920288086000085, + 13.368103027000075 + ], + [ + 102.860107422000056, + 13.387878418000071 + ], + [ + 102.849304199000073, + 13.382690430000025 + ], + [ + 102.816284180000082, + 13.391723633000026 + ], + [ + 102.770690918000071, + 13.404296875000057 + ], + [ + 102.745727539000086, + 13.411682129000042 + ], + [ + 102.741516113000046, + 13.410888672000056 + ], + [ + 102.738281250000057, + 13.408874512000068 + ], + [ + 102.735717773000033, + 13.407470703000058 + ], + [ + 102.732299805000082, + 13.406311035000044 + ], + [ + 102.728271484000061, + 13.405517578000058 + ], + [ + 102.724487305000082, + 13.403930664000029 + ], + [ + 102.719482422000056, + 13.401489258000026 + ], + [ + 102.715698242000087, + 13.399719238000046 + ], + [ + 102.713073730000076, + 13.398071289000029 + ], + [ + 102.710327148000033, + 13.396118164000029 + ], + [ + 102.707275391000053, + 13.394287109000061 + ], + [ + 102.704711914000086, + 13.392700195000032 + ], + [ + 102.701110840000069, + 13.390502930000025 + ], + [ + 102.696472168000071, + 13.387512207000043 + ], + [ + 102.69171142600004, + 13.383483887000068 + ], + [ + 102.688110352000081, + 13.380920410000044 + ], + [ + 102.6875, + 13.401672363000046 + ], + [ + 102.6875, + 13.412475586000028 + ], + [ + 102.687316895000038, + 13.430725098000039 + ], + [ + 102.687316895000038, + 13.446899414000029 + ], + [ + 102.687316895000038, + 13.461120605000076 + ], + [ + 102.687072754000042, + 13.46710205100004 + ], + [ + 102.686889648000033, + 13.479492187000062 + ], + [ + 102.594726562000062, + 13.478515625000057 + ], + [ + 102.516723633000083, + 13.477722168000071 + ], + [ + 102.496520996000072, + 13.477478027000075 + ], + [ + 102.463684082000043, + 13.477111816000047 + ], + [ + 102.420288086000085, + 13.478515625000057 + ], + [ + 102.390502930000082, + 13.476501465000069 + ], + [ + 102.357299805000082, + 13.475708008000026 + ], + [ + 102.357299805000082, + 13.479492187000062 + ], + [ + 102.35968017600004, + 13.483093262000068 + ], + [ + 102.361083984000061, + 13.487487793000071 + ], + [ + 102.361877441000047, + 13.491882324000073 + ], + [ + 102.361694336000085, + 13.496093750000057 + ], + [ + 102.361511230000076, + 13.499694824000073 + ], + [ + 102.360717773000033, + 13.502685547000056 + ], + [ + 102.362915039000086, + 13.505676270000038 + ], + [ + 102.360473633000083, + 13.507690430000025 + ], + [ + 102.358703613000046, + 13.510498047000056 + ], + [ + 102.357299805000082, + 13.513671875000057 + ], + [ + 102.354675293000071, + 13.516113281000059 + ], + [ + 102.351928711000085, + 13.519287109000061 + ], + [ + 102.349487305000082, + 13.523498535000044 + ], + [ + 102.347106934000067, + 13.527099609000061 + ], + [ + 102.344726562000062, + 13.530700684000067 + ], + [ + 102.340515137000068, + 13.532714844000054 + ], + [ + 102.336914062000062, + 13.534912109000061 + ], + [ + 102.334899902000075, + 13.537902832000043 + ], + [ + 102.334899902000075, + 13.541503906000059 + ], + [ + 102.336730957000043, + 13.545471191000047 + ], + [ + 102.337280273000033, + 13.549499512000068 + ], + [ + 102.338317871000072, + 13.552673340000069 + ], + [ + 102.338684082000043, + 13.555908203000058 + ], + [ + 102.341308594000054, + 13.559326172000056 + ], + [ + 102.344299316000047, + 13.560729980000076 + ], + [ + 102.347290039000086, + 13.561706543000071 + ], + [ + 102.351074219000054, + 13.5625 + ], + [ + 102.354492187000062, + 13.563720703000058 + ], + [ + 102.358093262000068, + 13.565673828000058 + ], + [ + 102.359130859000061, + 13.569702148000033 + ], + [ + 102.361877441000047, + 13.572875977000024 + ], + [ + 102.364501953000058, + 13.576110840000069 + ], + [ + 102.368530273000033, + 13.577514648000033 + ], + [ + 102.372497559000067, + 13.575927734000061 + ], + [ + 102.375915527000075, + 13.577514648000033 + ], + [ + 102.379272461000085, + 13.575500488000046 + ], + [ + 102.38311767600004, + 13.572692871000072 + ], + [ + 102.386901855000076, + 13.571899414000029 + ], + [ + 102.389526367000087, + 13.570495605000076 + ], + [ + 102.391296387000068, + 13.567871094000054 + ], + [ + 102.394470215000069, + 13.567504883000026 + ], + [ + 102.398681641000053, + 13.567077637000068 + ], + [ + 102.402282715000069, + 13.567687988000046 + ], + [ + 102.405517578000058, + 13.568298340000069 + ], + [ + 102.409301758000083, + 13.567504883000026 + ], + [ + 102.412109375000057, + 13.568725586000028 + ], + [ + 102.415283203000058, + 13.570129395000038 + ], + [ + 102.419311523000033, + 13.570922852000024 + ], + [ + 102.424316406000059, + 13.569519043000071 + ], + [ + 102.427307129000042, + 13.567077637000068 + ], + [ + 102.429687500000057, + 13.564880371000072 + ], + [ + 102.432495117000087, + 13.562072754000042 + ], + [ + 102.435913086000085, + 13.561279297000056 + ], + [ + 102.438720703000058, + 13.560302734000061 + ], + [ + 102.441284180000082, + 13.561706543000071 + ], + [ + 102.444885254000042, + 13.562316895000038 + ], + [ + 102.450500488000046, + 13.561523437000062 + ], + [ + 102.453491211000085, + 13.5625 + ], + [ + 102.456481934000067, + 13.562683105000076 + ], + [ + 102.459716797000056, + 13.562683105000076 + ], + [ + 102.463500977000081, + 13.56530761700003 + ], + [ + 102.46710205100004, + 13.565917969000054 + ], + [ + 102.471130371000072, + 13.566101074000073 + ], + [ + 102.47491455100004, + 13.567687988000046 + ], + [ + 102.476928711000085, + 13.570129395000038 + ], + [ + 102.479919434000067, + 13.571716309000067 + ], + [ + 102.483703613000046, + 13.571105957000043 + ], + [ + 102.487670898000033, + 13.571472168000071 + ], + [ + 102.491271973000039, + 13.571716309000067 + ], + [ + 102.494873047000056, + 13.570312500000057 + ], + [ + 102.499328613000046, + 13.570495605000076 + ], + [ + 102.503723145000038, + 13.570129395000038 + ], + [ + 102.507324219000054, + 13.568725586000028 + ], + [ + 102.510314941000047, + 13.568481445000032 + ], + [ + 102.513916016000053, + 13.568725586000028 + ], + [ + 102.518493652000075, + 13.567871094000054 + ], + [ + 102.521728516000053, + 13.566894531000059 + ], + [ + 102.525329590000069, + 13.56530761700003 + ], + [ + 102.529479980000076, + 13.566284180000025 + ], + [ + 102.535278320000032, + 13.567077637000068 + ], + [ + 102.539672852000081, + 13.569091797000056 + ], + [ + 102.542114258000083, + 13.571472168000071 + ], + [ + 102.544494629000042, + 13.573303223000039 + ], + [ + 102.546325684000067, + 13.575500488000046 + ], + [ + 102.549499512000068, + 13.576721191000047 + ], + [ + 102.553283691000047, + 13.575683594000054 + ], + [ + 102.556091309000067, + 13.578125 + ], + [ + 102.559509277000075, + 13.578918457000043 + ], + [ + 102.5625, + 13.579284668000071 + ], + [ + 102.564880371000072, + 13.582702637000068 + ], + [ + 102.568298340000069, + 13.584472656000059 + ], + [ + 102.570129395000038, + 13.586730957000043 + ], + [ + 102.569702148000033, + 13.590270996000072 + ], + [ + 102.570495605000076, + 13.594726562000062 + ], + [ + 102.573303223000039, + 13.597290039000029 + ], + [ + 102.573303223000039, + 13.600524902000075 + ], + [ + 102.574890137000068, + 13.603698730000076 + ], + [ + 102.577697754000042, + 13.604675293000071 + ], + [ + 102.580871582000043, + 13.606079102000024 + ], + [ + 102.583679199000073, + 13.606689453000058 + ], + [ + 102.587890625000057, + 13.607482910000044 + ], + [ + 102.591918945000032, + 13.607299805000025 + ], + [ + 102.594726562000062, + 13.60827636700003 + ], + [ + 102.598510742000087, + 13.60772705100004 + ], + [ + 102.602905273000033, + 13.607116699000073 + ], + [ + 102.607299805000082, + 13.606506348000039 + ], + [ + 102.611328125000057, + 13.605712891000053 + ], + [ + 102.614318848000039, + 13.608093262000068 + ], + [ + 102.618530273000033, + 13.607910156000059 + ], + [ + 102.621704102000081, + 13.60827636700003 + ], + [ + 102.626098633000083, + 13.607299805000025 + ], + [ + 102.623474121000072, + 13.610717773000033 + ], + [ + 102.621520996000072, + 13.612915039000029 + ], + [ + 102.617126465000069, + 13.613708496000072 + ], + [ + 102.613708496000072, + 13.615112305000025 + ], + [ + 102.610900879000042, + 13.616271973000039 + ], + [ + 102.606689453000058, + 13.617126465000069 + ], + [ + 102.603088379000042, + 13.619689941000047 + ], + [ + 102.600524902000075, + 13.622497559000067 + ], + [ + 102.596313477000081, + 13.623107910000044 + ], + [ + 102.593322754000042, + 13.625915527000075 + ], + [ + 102.590087891000053, + 13.625488281000059 + ], + [ + 102.587524414000086, + 13.628723145000038 + ], + [ + 102.584106445000032, + 13.629699707000043 + ], + [ + 102.581481934000067, + 13.628479004000042 + ], + [ + 102.577514648000033, + 13.629699707000043 + ], + [ + 102.573730469000054, + 13.632324219000054 + ], + [ + 102.572082520000038, + 13.635498047000056 + ], + [ + 102.570922852000081, + 13.638916016000053 + ], + [ + 102.570678711000085, + 13.641906738000046 + ], + [ + 102.568115234000061, + 13.644714355000076 + ], + [ + 102.564880371000072, + 13.645874023000033 + ], + [ + 102.561523437000062, + 13.648315430000025 + ], + [ + 102.558105469000054, + 13.64929199200003 + ], + [ + 102.556274414000086, + 13.652282715000069 + ], + [ + 102.552124023000033, + 13.656127930000025 + ], + [ + 102.548889160000044, + 13.659729004000042 + ], + [ + 102.550720215000069, + 13.663513184000067 + ], + [ + 102.553283691000047, + 13.667907715000069 + ], + [ + 102.556091309000067, + 13.671325684000067 + ], + [ + 102.558715820000032, + 13.675903320000032 + ], + [ + 102.560729980000076, + 13.679504395000038 + ], + [ + 102.563110352000081, + 13.68389892600004 + ], + [ + 102.56671142600004, + 13.687072754000042 + ], + [ + 102.568481445000032, + 13.69030761700003 + ], + [ + 102.571105957000043, + 13.691894531000059 + ], + [ + 102.574707031000059, + 13.692504883000026 + ], + [ + 102.577514648000033, + 13.694885254000042 + ], + [ + 102.578674316000047, + 13.698486328000058 + ], + [ + 102.581481934000067, + 13.700683594000054 + ], + [ + 102.585327148000033, + 13.702880859000061 + ], + [ + 102.589294434000067, + 13.704895020000038 + ], + [ + 102.591674805000082, + 13.707092285000044 + ], + [ + 102.594909668000071, + 13.707702637000068 + ], + [ + 102.599121094000054, + 13.707275391000053 + ], + [ + 102.634704590000069, + 13.726501465000069 + ], + [ + 102.655700684000067, + 13.737487793000071 + ], + [ + 102.659301758000083, + 13.739501953000058 + ], + [ + 102.664306641000053, + 13.742126465000069 + ], + [ + 102.674926758000083, + 13.747680664000029 + ], + [ + 102.679321289000086, + 13.749877930000025 + ], + [ + 102.684509277000075, + 13.751098633000026 + ], + [ + 102.688720703000058, + 13.752075195000032 + ], + [ + 102.692504883000083, + 13.754882812000062 + ], + [ + 102.695129395000038, + 13.756896973000039 + ], + [ + 102.697875977000081, + 13.758911133000026 + ], + [ + 102.702514648000033, + 13.762329102000024 + ], + [ + 102.705505371000072, + 13.764709473000039 + ], + [ + 102.710876465000069, + 13.769714355000076 + ], + [ + 102.713500977000081, + 13.772094727000024 + ], + [ + 102.716491699000073, + 13.774108887000068 + ], + [ + 102.721496582000043, + 13.774108887000068 + ], + [ + 102.725708008000083, + 13.773681641000053 + ], + [ + 102.732116699000073, + 13.77569580100004 + ], + [ + 102.732910156000059, + 13.781494141000053 + ], + [ + 102.731323242000087, + 13.785888672000056 + ], + [ + 102.727478027000075, + 13.787475586000028 + ], + [ + 102.723876953000058, + 13.790527344000054 + ], + [ + 102.723327637000068, + 13.79327392600004 + ], + [ + 102.727478027000075, + 13.800476074000073 + ], + [ + 102.733093262000068, + 13.809692383000026 + ], + [ + 102.73468017600004, + 13.812072754000042 + ], + [ + 102.741699219000054, + 13.823486328000058 + ], + [ + 102.746276855000076, + 13.831115723000039 + ], + [ + 102.749877930000082, + 13.835876465000069 + ], + [ + 102.756103516000053, + 13.846679687000062 + ], + [ + 102.766296387000068, + 13.856506348000039 + ], + [ + 102.782897949000073, + 13.932922363000046 + ], + [ + 102.793090820000032, + 13.937683105000076 + ], + [ + 102.798278809000067, + 13.942321777000075 + ], + [ + 102.803894043000071, + 13.944091797000056 + ], + [ + 102.807678223000039, + 13.948303223000039 + ], + [ + 102.809509277000075, + 13.951110840000069 + ], + [ + 102.811523437000062, + 13.953918457000043 + ], + [ + 102.813476562000062, + 13.958312988000046 + ], + [ + 102.815673828000058, + 13.965515137000068 + ], + [ + 102.849670410000044, + 13.986877441000047 + ], + [ + 102.865295410000044, + 14.002685547000056 + ], + [ + 102.869323730000076, + 14.004516602000024 + ], + [ + 102.873107910000044, + 14.003479004000042 + ], + [ + 102.876525879000042, + 14.003295898000033 + ], + [ + 102.880126953000058, + 14.004272461000028 + ], + [ + 102.881896973000039, + 14.007324219000054 + ], + [ + 102.884277344000054, + 14.009887695000032 + ], + [ + 102.887512207000043, + 14.01007080100004 + ], + [ + 102.890502930000082, + 14.008911133000026 + ], + [ + 102.894104004000042, + 14.007873535000044 + ], + [ + 102.896484375000057, + 14.01007080100004 + ], + [ + 102.899108887000068, + 14.012695312000062 + ], + [ + 102.901672363000046, + 14.015686035000044 + ], + [ + 102.906127930000082, + 14.016723633000026 + ], + [ + 102.910705566000047, + 14.017089844000054 + ], + [ + 102.909484863000046, + 14.021301270000038 + ], + [ + 102.908325195000032, + 14.025329590000069 + ], + [ + 102.907287598000039, + 14.028930664000029 + ], + [ + 102.904724121000072, + 14.031311035000044 + ], + [ + 102.902893066000047, + 14.034912109000061 + ], + [ + 102.903686523000033, + 14.040100098000039 + ], + [ + 102.900878906000059, + 14.043884277000075 + ], + [ + 102.899475098000039, + 14.048889160000044 + ], + [ + 102.897705078000058, + 14.053894043000071 + ], + [ + 102.899108887000068, + 14.056884766000053 + ], + [ + 102.899291992000087, + 14.060729980000076 + ], + [ + 102.900329590000069, + 14.064086914000029 + ], + [ + 102.901672363000046, + 14.06671142600004 + ], + [ + 102.901672363000046, + 14.069885254000042 + ], + [ + 102.901489258000083, + 14.073730469000054 + ], + [ + 102.901306152000075, + 14.078918457000043 + ], + [ + 102.901489258000083, + 14.083312988000046 + ], + [ + 102.904296875000057, + 14.087890625000057 + ], + [ + 102.905700684000067, + 14.091308594000054 + ], + [ + 102.908325195000032, + 14.095275879000042 + ], + [ + 102.911682129000042, + 14.096130371000072 + ], + [ + 102.914123535000044, + 14.097900391000053 + ], + [ + 102.917114258000083, + 14.100280762000068 + ], + [ + 102.919921875000057, + 14.103698730000076 + ], + [ + 102.923278809000067, + 14.107116699000073 + ], + [ + 102.924316406000059, + 14.111328125000057 + ], + [ + 102.924072266000053, + 14.115478516000053 + ], + [ + 102.924072266000053, + 14.120910645000038 + ], + [ + 102.924316406000059, + 14.124084473000039 + ], + [ + 102.923889160000044, + 14.127319336000028 + ], + [ + 102.924926758000083, + 14.131103516000053 + ], + [ + 102.927307129000042, + 14.13507080100004 + ], + [ + 102.930725098000039, + 14.137878418000071 + ], + [ + 102.933715820000032, + 14.140502930000025 + ], + [ + 102.936706543000071, + 14.143127441000047 + ], + [ + 102.939270020000038, + 14.146301270000038 + ], + [ + 102.940673828000058, + 14.149719238000046 + ], + [ + 102.940917969000054, + 14.152893066000047 + ], + [ + 102.939880371000072, + 14.155883789000029 + ], + [ + 102.938903809000067, + 14.158691406000059 + ], + [ + 102.937316895000038, + 14.162292480000076 + ], + [ + 102.936523437000062, + 14.16687011700003 + ], + [ + 102.934692383000083, + 14.170898437000062 + ], + [ + 102.932922363000046, + 14.173706055000025 + ], + [ + 102.930480957000043, + 14.176696777000075 + ], + [ + 102.933288574000073, + 14.179870605000076 + ], + [ + 102.9375, + 14.182922363000046 + ], + [ + 102.940673828000058, + 14.186279297000056 + ], + [ + 102.940490723000039, + 14.19030761700003 + ], + [ + 102.939086914000086, + 14.194702148000033 + ], + [ + 102.942077637000068, + 14.197326660000044 + ], + [ + 102.945495605000076, + 14.198486328000058 + ], + [ + 102.948730469000054, + 14.196899414000029 + ], + [ + 102.953125, + 14.196289062000062 + ], + [ + 102.956726074000073, + 14.197692871000072 + ], + [ + 102.955688477000081, + 14.201110840000069 + ], + [ + 102.953491211000085, + 14.203491211000028 + ], + [ + 102.951904297000056, + 14.206115723000039 + ], + [ + 102.954895020000038, + 14.208679199000073 + ], + [ + 102.959472656000059, + 14.210327148000033 + ], + [ + 102.962097168000071, + 14.211914062000062 + ], + [ + 102.965087891000053, + 14.212097168000071 + ], + [ + 102.967895508000083, + 14.210876465000069 + ], + [ + 102.971130371000072, + 14.210510254000042 + ], + [ + 102.974304199000073, + 14.211486816000047 + ], + [ + 102.978881836000085, + 14.213073730000076 + ], + [ + 102.983703613000046, + 14.214294434000067 + ], + [ + 102.987670898000033, + 14.214477539000029 + ], + [ + 102.990478516000053, + 14.213317871000072 + ], + [ + 102.993286133000083, + 14.214111328000058 + ], + [ + 102.996276855000076, + 14.213928223000039 + ], + [ + 103.000122070000032, + 14.215087891000053 + ], + [ + 103.004272461000085, + 14.220520020000038 + ], + [ + 103.007080078000058, + 14.222290039000029 + ], + [ + 103.010498047000056, + 14.225280762000068 + ], + [ + 103.012084961000085, + 14.228271484000061 + ], + [ + 103.014282227000081, + 14.23132324200003 + ], + [ + 103.018310547000056, + 14.230895996000072 + ], + [ + 103.022705078000058, + 14.229309082000043 + ], + [ + 103.025085449000073, + 14.232482910000044 + ], + [ + 103.028686523000033, + 14.235473633000026 + ], + [ + 103.032470703000058, + 14.238708496000072 + ], + [ + 103.032287598000039, + 14.243896484000061 + ], + [ + 103.031677246000072, + 14.247070312000062 + ], + [ + 103.031921387000068, + 14.25030517600004 + ], + [ + 103.076110840000069, + 14.163513184000067 + ], + [ + 103.076904297000056, + 14.159729004000042 + ], + [ + 103.079528809000067, + 14.155273437000062 + ], + [ + 103.080505371000072, + 14.149719238000046 + ], + [ + 103.081481934000067, + 14.145080566000047 + ], + [ + 103.082702637000068, + 14.141113281000059 + ], + [ + 103.085693359000061, + 14.138671875000057 + ], + [ + 103.089477539000086, + 14.135498047000056 + ], + [ + 103.093322754000042, + 14.132080078000058 + ], + [ + 103.097290039000086, + 14.130310059000067 + ], + [ + 103.09991455100004, + 14.126892090000069 + ], + [ + 103.101928711000085, + 14.124511719000054 + ], + [ + 103.105285645000038, + 14.122070312000062 + ], + [ + 103.109313965000069, + 14.119689941000047 + ], + [ + 103.111328125000057, + 14.116271973000039 + ], + [ + 103.114929199000073, + 14.115722656000059 + ], + [ + 103.118286133000083, + 14.114501953000058 + ], + [ + 103.120727539000086, + 14.112304687000062 + ], + [ + 103.124328613000046, + 14.110107422000056 + ], + [ + 103.127319336000085, + 14.110473633000026 + ], + [ + 103.130493164000086, + 14.111877441000047 + ], + [ + 103.134277344000054, + 14.111328125000057 + ], + [ + 103.138916016000053, + 14.109497070000032 + ], + [ + 103.143127441000047, + 14.108703613000046 + ], + [ + 103.145507812000062, + 14.110717773000033 + ], + [ + 103.148925781000059, + 14.111328125000057 + ], + [ + 103.151916504000042, + 14.111877441000047 + ], + [ + 103.154479980000076, + 14.109924316000047 + ], + [ + 103.158081055000082, + 14.108703613000046 + ], + [ + 103.161071777000075, + 14.111511230000076 + ], + [ + 103.164306641000053, + 14.112121582000043 + ], + [ + 103.168090820000032, + 14.111083984000061 + ], + [ + 103.171875, + 14.109130859000061 + ], + [ + 103.175292969000054, + 14.106872559000067 + ], + [ + 103.179077148000033, + 14.106506348000039 + ], + [ + 103.183105469000054, + 14.106689453000058 + ], + [ + 103.186096191000047, + 14.106872559000067 + ], + [ + 103.190307617000087, + 14.107116699000073 + ], + [ + 103.194091797000056, + 14.108520508000026 + ], + [ + 103.197875977000081, + 14.108703613000046 + ], + [ + 103.203491211000085, + 14.10772705100004 + ], + [ + 103.207092285000044, + 14.109130859000061 + ], + [ + 103.210327148000033, + 14.109313965000069 + ], + [ + 103.210083008000083, + 14.105712891000053 + ], + [ + 103.208923340000069, + 14.102111816000047 + ], + [ + 103.207702637000068, + 14.097900391000053 + ], + [ + 103.206298828000058, + 14.093505859000061 + ], + [ + 103.205078125000057, + 14.09069824200003 + ], + [ + 103.203308105000076, + 14.087524414000029 + ], + [ + 103.200317383000083, + 14.083679199000073 + ], + [ + 103.201293945000032, + 14.079711914000029 + ], + [ + 103.20147705100004, + 14.076293945000032 + ], + [ + 103.200500488000046, + 14.072875977000024 + ], + [ + 103.200317383000083, + 14.068725586000028 + ], + [ + 103.197692871000072, + 14.064086914000029 + ], + [ + 103.194274902000075, + 14.060913086000028 + ], + [ + 103.192077637000068, + 14.05889892600004 + ], + [ + 103.189514160000044, + 14.05749511700003 + ], + [ + 103.186889648000033, + 14.054504395000038 + ], + [ + 103.186889648000033, + 14.050476074000073 + ], + [ + 103.189270020000038, + 14.047485352000024 + ], + [ + 103.191894531000059, + 14.045104980000076 + ], + [ + 103.194519043000071, + 14.04187011700003 + ], + [ + 103.195678711000085, + 14.039123535000044 + ], + [ + 103.195678711000085, + 14.036071777000075 + ], + [ + 103.194702148000033, + 14.031921387000068 + ], + [ + 103.193908691000047, + 14.027099609000061 + ], + [ + 103.192871094000054, + 14.023315430000025 + ], + [ + 103.191284180000082, + 14.020324707000043 + ], + [ + 103.189514160000044, + 14.017272949000073 + ], + [ + 103.187927246000072, + 14.01452636700003 + ], + [ + 103.186889648000033, + 14.011291504000042 + ], + [ + 103.183715820000032, + 14.008300781000059 + ], + [ + 103.180114746000072, + 14.005310059000067 + ], + [ + 103.175476074000073, + 14.002502441000047 + ], + [ + 103.171508789000086, + 14.000915527000075 + ], + [ + 103.170471191000047, + 13.996887207000043 + ], + [ + 103.171081543000071, + 13.993713379000042 + ], + [ + 103.181091309000067, + 13.977294922000056 + ], + [ + 103.191894531000059, + 13.960693359000061 + ], + [ + 103.198120117000087, + 13.949890137000068 + ], + [ + 103.201721191000047, + 13.942321777000075 + ], + [ + 103.204101562000062, + 13.939270020000038 + ], + [ + 103.207275391000053, + 13.944885254000042 + ], + [ + 103.212707520000038, + 13.94812011700003 + ], + [ + 103.218872070000032, + 13.95007324200003 + ], + [ + 103.238098145000038, + 13.950927734000061 + ], + [ + 103.244079590000069, + 13.95147705100004 + ], + [ + 103.247070312000062, + 13.951293945000032 + ], + [ + 103.250488281000059, + 13.95147705100004 + ], + [ + 103.253723145000038, + 13.952087402000075 + ], + [ + 103.257507324000073, + 13.952697754000042 + ], + [ + 103.260925293000071, + 13.953491211000028 + ], + [ + 103.264526367000087, + 13.955078125000057 + ], + [ + 103.267089844000054, + 13.956909180000025 + ], + [ + 103.271118164000086, + 13.960510254000042 + ], + [ + 103.274475098000039, + 13.963073730000076 + ], + [ + 103.277709961000085, + 13.966308594000054 + ], + [ + 103.280273437000062, + 13.969116211000028 + ], + [ + 103.286926270000038, + 13.976501465000069 + ], + [ + 103.294311523000033, + 13.98468017600004 + ], + [ + 103.300720215000069, + 13.991699219000054 + ], + [ + 103.309875488000046, + 14.002502441000047 + ], + [ + 103.312683105000076, + 14.006530762000068 + ], + [ + 103.314514160000044, + 14.009277344000054 + ], + [ + 103.316101074000073, + 14.011718750000057 + ], + [ + 103.318481445000032, + 14.014709473000039 + ], + [ + 103.321716309000067, + 14.018310547000056 + ], + [ + 103.325073242000087, + 14.022521973000039 + ], + [ + 103.328491211000085, + 14.02569580100004 + ], + [ + 103.331298828000058, + 14.022277832000043 + ], + [ + 103.331909180000082, + 14.018920898000033 + ], + [ + 103.332885742000087, + 14.015075684000067 + ], + [ + 103.341491699000073, + 14.002319336000028 + ], + [ + 103.343688965000069, + 14.00030517600004 + ], + [ + 103.345092773000033, + 13.997680664000029 + ], + [ + 103.347106934000067, + 13.994323730000076 + ], + [ + 103.349121094000054, + 13.990905762000068 + ], + [ + 103.352905273000033, + 13.984130859000061 + ], + [ + 103.354919434000067, + 13.980712891000053 + ], + [ + 103.356872559000067, + 13.977294922000056 + ], + [ + 103.358703613000046, + 13.973876953000058 + ], + [ + 103.361877441000047, + 13.968688965000069 + ], + [ + 103.364074707000043, + 13.965087891000053 + ], + [ + 103.366516113000046, + 13.961914062000062 + ], + [ + 103.369323730000076, + 13.958312988000046 + ], + [ + 103.372314453000058, + 13.954284668000071 + ], + [ + 103.375671387000068, + 13.94952392600004 + ], + [ + 103.378906250000057, + 13.945129395000038 + ], + [ + 103.380920410000044, + 13.942321777000075 + ], + [ + 103.383911133000083, + 13.938720703000058 + ], + [ + 103.386901855000076, + 13.935119629000042 + ], + [ + 103.390075684000067, + 13.932678223000039 + ], + [ + 103.393127441000047, + 13.931701660000044 + ], + [ + 103.397277832000043, + 13.930908203000058 + ], + [ + 103.402099609000061, + 13.929321289000029 + ], + [ + 103.407287598000039, + 13.928710937000062 + ], + [ + 103.411315918000071, + 13.928527832000043 + ], + [ + 103.415100098000039, + 13.926513672000056 + ], + [ + 103.418090820000032, + 13.924316406000059 + ], + [ + 103.420715332000043, + 13.922912598000039 + ], + [ + 103.423522949000073, + 13.921508789000029 + ], + [ + 103.426330566000047, + 13.919921875000057 + ], + [ + 103.429077148000033, + 13.919311523000033 + ], + [ + 103.434875488000046, + 13.918884277000075 + ], + [ + 103.437683105000076, + 13.917480469000054 + ], + [ + 103.440673828000058, + 13.91632080100004 + ], + [ + 103.440307617000087, + 13.911682129000042 + ], + [ + 103.436889648000033, + 13.910278320000032 + ], + [ + 103.439086914000086, + 13.906494141000053 + ], + [ + 103.436889648000033, + 13.904113770000038 + ], + [ + 103.439880371000072, + 13.901672363000046 + ], + [ + 103.442321777000075, + 13.898925781000059 + ], + [ + 103.439086914000086, + 13.895324707000043 + ], + [ + 103.438110352000081, + 13.891113281000059 + ], + [ + 103.435302734000061, + 13.891723633000026 + ], + [ + 103.434692383000083, + 13.888488770000038 + ], + [ + 103.434692383000083, + 13.883483887000068 + ], + [ + 103.433105469000054, + 13.879516602000024 + ], + [ + 103.428894043000071, + 13.880126953000058 + ], + [ + 103.425903320000032, + 13.877319336000028 + ], + [ + 103.428100586000085, + 13.874877930000025 + ], + [ + 103.430114746000072, + 13.870727539000029 + ], + [ + 103.430725098000039, + 13.866882324000073 + ], + [ + 103.427673340000069, + 13.865295410000044 + ], + [ + 103.426879883000083, + 13.861511230000076 + ], + [ + 103.427490234000061, + 13.85827636700003 + ], + [ + 103.423706055000082, + 13.859313965000069 + ], + [ + 103.421691895000038, + 13.85632324200003 + ], + [ + 103.423889160000044, + 13.853088379000042 + ], + [ + 103.423706055000082, + 13.848083496000072 + ], + [ + 103.424072266000053, + 13.844116211000028 + ], + [ + 103.425109863000046, + 13.840270996000072 + ], + [ + 103.425720215000069, + 13.836486816000047 + ], + [ + 103.423278809000067, + 13.834472656000059 + ], + [ + 103.425720215000069, + 13.829895020000038 + ], + [ + 103.427673340000069, + 13.82507324200003 + ], + [ + 103.431884766000053, + 13.82452392600004 + ], + [ + 103.429870605000076, + 13.820495605000076 + ], + [ + 103.432128906000059, + 13.817077637000068 + ], + [ + 103.436706543000071, + 13.817077637000068 + ], + [ + 103.440917969000054, + 13.818298340000069 + ], + [ + 103.440124512000068, + 13.81530761700003 + ], + [ + 103.437683105000076, + 13.811889648000033 + ], + [ + 103.434326172000056, + 13.809509277000075 + ], + [ + 103.430908203000058, + 13.807312012000068 + ], + [ + 103.430908203000058, + 13.802124023000033 + ], + [ + 103.427307129000042, + 13.800476074000073 + ], + [ + 103.424682617000087, + 13.799316406000059 + ], + [ + 103.422119141000053, + 13.796875 + ], + [ + 103.424926758000083, + 13.795104980000076 + ], + [ + 103.427490234000061, + 13.797119141000053 + ], + [ + 103.427917480000076, + 13.793090820000032 + ], + [ + 103.425903320000032, + 13.790527344000054 + ], + [ + 103.422912598000039, + 13.789123535000044 + ], + [ + 103.424499512000068, + 13.786499023000033 + ], + [ + 103.425720215000069, + 13.783081055000025 + ], + [ + 103.424499512000068, + 13.779113770000038 + ], + [ + 103.420104980000076, + 13.778076172000056 + ], + [ + 103.415893555000082, + 13.778076172000056 + ], + [ + 103.414123535000044, + 13.774902344000054 + ], + [ + 103.412109375000057, + 13.778320312000062 + ], + [ + 103.410095215000069, + 13.776123047000056 + ], + [ + 103.411682129000042, + 13.771911621000072 + ], + [ + 103.415283203000058, + 13.769714355000076 + ], + [ + 103.41827392600004, + 13.770690918000071 + ], + [ + 103.421081543000071, + 13.768676758000026 + ], + [ + 103.423889160000044, + 13.765686035000044 + ], + [ + 103.424682617000087, + 13.760925293000071 + ], + [ + 103.423889160000044, + 13.757690430000025 + ], + [ + 103.424316406000059, + 13.754699707000043 + ], + [ + 103.430114746000072, + 13.753479004000042 + ], + [ + 103.428710937000062, + 13.749877930000025 + ], + [ + 103.425292969000054, + 13.749694824000073 + ], + [ + 103.421691895000038, + 13.746520996000072 + ], + [ + 103.420715332000043, + 13.743103027000075 + ], + [ + 103.423706055000082, + 13.743713379000042 + ], + [ + 103.422912598000039, + 13.739501953000058 + ], + [ + 103.419494629000042, + 13.736877441000047 + ], + [ + 103.422485352000081, + 13.733703613000046 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 5.7807144386299996, + "Shape_Area": 0.98887453976100004, + "ADM1_EN": "Battambang", + "ADM1_PCODE": "KH02", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 102.686889648000033, + 13.479492187000062 + ], + [ + 102.687072754000042, + 13.46710205100004 + ], + [ + 102.687316895000038, + 13.461120605000076 + ], + [ + 102.687316895000038, + 13.446899414000029 + ], + [ + 102.687316895000038, + 13.430725098000039 + ], + [ + 102.6875, + 13.412475586000028 + ], + [ + 102.6875, + 13.401672363000046 + ], + [ + 102.688110352000081, + 13.380920410000044 + ], + [ + 102.69171142600004, + 13.383483887000068 + ], + [ + 102.696472168000071, + 13.387512207000043 + ], + [ + 102.701110840000069, + 13.390502930000025 + ], + [ + 102.704711914000086, + 13.392700195000032 + ], + [ + 102.707275391000053, + 13.394287109000061 + ], + [ + 102.710327148000033, + 13.396118164000029 + ], + [ + 102.713073730000076, + 13.398071289000029 + ], + [ + 102.715698242000087, + 13.399719238000046 + ], + [ + 102.719482422000056, + 13.401489258000026 + ], + [ + 102.724487305000082, + 13.403930664000029 + ], + [ + 102.728271484000061, + 13.405517578000058 + ], + [ + 102.732299805000082, + 13.406311035000044 + ], + [ + 102.735717773000033, + 13.407470703000058 + ], + [ + 102.738281250000057, + 13.408874512000068 + ], + [ + 102.741516113000046, + 13.410888672000056 + ], + [ + 102.745727539000086, + 13.411682129000042 + ], + [ + 102.770690918000071, + 13.404296875000057 + ], + [ + 102.816284180000082, + 13.391723633000026 + ], + [ + 102.849304199000073, + 13.382690430000025 + ], + [ + 102.860107422000056, + 13.387878418000071 + ], + [ + 102.920288086000085, + 13.368103027000075 + ], + [ + 102.921508789000086, + 13.365478516000053 + ], + [ + 102.924682617000087, + 13.365478516000053 + ], + [ + 102.984313965000069, + 13.361083984000061 + ], + [ + 102.986877441000047, + 13.376098633000026 + ], + [ + 102.988098145000038, + 13.378906250000057 + ], + [ + 102.991516113000046, + 13.381103516000053 + ], + [ + 102.996093750000057, + 13.379882812000062 + ], + [ + 102.997497559000067, + 13.377319336000028 + ], + [ + 103.001098633000083, + 13.375671387000068 + ], + [ + 103.003906250000057, + 13.378112793000071 + ], + [ + 103.004699707000043, + 13.381286621000072 + ], + [ + 103.009704590000069, + 13.382507324000073 + ], + [ + 103.013305664000086, + 13.38507080100004 + ], + [ + 103.015502930000082, + 13.388916016000053 + ], + [ + 103.017517090000069, + 13.392089844000054 + ], + [ + 103.020080566000047, + 13.393493652000075 + ], + [ + 103.024108887000068, + 13.394104004000042 + ], + [ + 103.029113770000038, + 13.395507812000062 + ], + [ + 103.032287598000039, + 13.396911621000072 + ], + [ + 103.035522461000085, + 13.397521973000039 + ], + [ + 103.038513184000067, + 13.396118164000029 + ], + [ + 103.041076660000044, + 13.394287109000061 + ], + [ + 103.044128418000071, + 13.391906738000046 + ], + [ + 103.048095703000058, + 13.391906738000046 + ], + [ + 103.051513672000056, + 13.392272949000073 + ], + [ + 103.055725098000039, + 13.392272949000073 + ], + [ + 103.060485840000069, + 13.393127441000047 + ], + [ + 103.065917969000054, + 13.394470215000069 + ], + [ + 103.070922852000081, + 13.395874023000033 + ], + [ + 103.076293945000032, + 13.397277832000043 + ], + [ + 103.079711914000086, + 13.398925781000059 + ], + [ + 103.083312988000046, + 13.397888184000067 + ], + [ + 103.086730957000043, + 13.398315430000025 + ], + [ + 103.090515137000068, + 13.398498535000044 + ], + [ + 103.093505859000061, + 13.399475098000039 + ], + [ + 103.095886230000076, + 13.401672363000046 + ], + [ + 103.098083496000072, + 13.406311035000044 + ], + [ + 103.101928711000085, + 13.404113770000038 + ], + [ + 103.105285645000038, + 13.404724121000072 + ], + [ + 103.108276367000087, + 13.405700684000067 + ], + [ + 103.111511230000076, + 13.406677246000072 + ], + [ + 103.112915039000086, + 13.410705566000047 + ], + [ + 103.116088867000087, + 13.409729004000042 + ], + [ + 103.119506836000085, + 13.410095215000069 + ], + [ + 103.124328613000046, + 13.411682129000042 + ], + [ + 103.127685547000056, + 13.411499023000033 + ], + [ + 103.132080078000058, + 13.411499023000033 + ], + [ + 103.135925293000071, + 13.411682129000042 + ], + [ + 103.139526367000087, + 13.411926270000038 + ], + [ + 103.142517090000069, + 13.411926270000038 + ], + [ + 103.146728516000053, + 13.411926270000038 + ], + [ + 103.149719238000046, + 13.411315918000071 + ], + [ + 103.151489258000083, + 13.407897949000073 + ], + [ + 103.153503418000071, + 13.405700684000067 + ], + [ + 103.156494141000053, + 13.403503418000071 + ], + [ + 103.159729004000042, + 13.405700684000067 + ], + [ + 103.162475586000085, + 13.407470703000058 + ], + [ + 103.165283203000058, + 13.410278320000032 + ], + [ + 103.168518066000047, + 13.411071777000075 + ], + [ + 103.174072266000053, + 13.411071777000075 + ], + [ + 103.178710937000062, + 13.410095215000069 + ], + [ + 103.182128906000059, + 13.408325195000032 + ], + [ + 103.185302734000061, + 13.405517578000058 + ], + [ + 103.186889648000033, + 13.40069580100004 + ], + [ + 103.190490723000039, + 13.398681641000053 + ], + [ + 103.193115234000061, + 13.397521973000039 + ], + [ + 103.195312500000057, + 13.395690918000071 + ], + [ + 103.198730469000054, + 13.393920898000033 + ], + [ + 103.203125, + 13.393310547000056 + ], + [ + 103.207092285000044, + 13.392517090000069 + ], + [ + 103.210693359000061, + 13.391723633000026 + ], + [ + 103.213928223000039, + 13.389709473000039 + ], + [ + 103.216918945000032, + 13.387329102000024 + ], + [ + 103.222717285000044, + 13.387084961000028 + ], + [ + 103.227111816000047, + 13.386718750000057 + ], + [ + 103.230285645000038, + 13.386291504000042 + ], + [ + 103.234924316000047, + 13.385681152000075 + ], + [ + 103.238708496000072, + 13.385498047000056 + ], + [ + 103.243286133000083, + 13.384887695000032 + ], + [ + 103.248718262000068, + 13.384521484000061 + ], + [ + 103.253479004000042, + 13.385681152000075 + ], + [ + 103.257507324000073, + 13.384094238000046 + ], + [ + 103.262512207000043, + 13.383728027000075 + ], + [ + 103.267517090000069, + 13.385681152000075 + ], + [ + 103.273681641000053, + 13.386474609000061 + ], + [ + 103.278686523000033, + 13.386901855000076 + ], + [ + 103.283325195000032, + 13.386474609000061 + ], + [ + 103.286926270000038, + 13.385498047000056 + ], + [ + 103.290710449000073, + 13.384277344000054 + ], + [ + 103.294494629000042, + 13.38311767600004 + ], + [ + 103.299072266000053, + 13.382324219000054 + ], + [ + 103.302673340000069, + 13.381896973000039 + ], + [ + 103.306518555000082, + 13.38171386700003 + ], + [ + 103.309875488000046, + 13.381530762000068 + ], + [ + 103.314270020000038, + 13.38171386700003 + ], + [ + 103.31671142600004, + 13.383300781000059 + ], + [ + 103.320312500000057, + 13.381286621000072 + ], + [ + 103.323303223000039, + 13.380920410000044 + ], + [ + 103.326293945000032, + 13.380676270000038 + ], + [ + 103.330322266000053, + 13.380493164000029 + ], + [ + 103.334472656000059, + 13.380493164000029 + ], + [ + 103.339111328000058, + 13.380126953000058 + ], + [ + 103.342895508000083, + 13.380310059000067 + ], + [ + 103.347717285000044, + 13.380310059000067 + ], + [ + 103.352722168000071, + 13.381286621000072 + ], + [ + 103.35772705100004, + 13.379882812000062 + ], + [ + 103.362487793000071, + 13.378295898000033 + ], + [ + 103.366699219000054, + 13.376708984000061 + ], + [ + 103.370300293000071, + 13.374511719000054 + ], + [ + 103.374511719000054, + 13.373107910000044 + ], + [ + 103.378479004000042, + 13.370910645000038 + ], + [ + 103.382507324000073, + 13.368530273000033 + ], + [ + 103.385498047000056, + 13.36608886700003 + ], + [ + 103.387878418000071, + 13.363525391000053 + ], + [ + 103.392089844000054, + 13.360473633000026 + ], + [ + 103.395507812000062, + 13.358520508000026 + ], + [ + 103.398925781000059, + 13.361694336000028 + ], + [ + 103.402282715000069, + 13.362487793000071 + ], + [ + 103.405517578000058, + 13.363098145000038 + ], + [ + 103.409301758000083, + 13.363708496000072 + ], + [ + 103.414123535000044, + 13.364685059000067 + ], + [ + 103.416076660000044, + 13.368286133000026 + ], + [ + 103.419494629000042, + 13.368286133000026 + ], + [ + 103.422729492000087, + 13.36749267600004 + ], + [ + 103.424926758000083, + 13.364929199000073 + ], + [ + 103.426696777000075, + 13.362670898000033 + ], + [ + 103.430725098000039, + 13.362304687000062 + ], + [ + 103.434875488000046, + 13.361083984000061 + ], + [ + 103.437316895000038, + 13.358520508000026 + ], + [ + 103.440490723000039, + 13.360107422000056 + ], + [ + 103.443115234000061, + 13.35772705100004 + ], + [ + 103.445495605000076, + 13.355895996000072 + ], + [ + 103.448913574000073, + 13.356079102000024 + ], + [ + 103.451293945000032, + 13.353515625000057 + ], + [ + 103.455871582000043, + 13.353271484000061 + ], + [ + 103.45928955100004, + 13.348693848000039 + ], + [ + 103.463073730000076, + 13.346496582000043 + ], + [ + 103.46710205100004, + 13.346313477000024 + ], + [ + 103.470520020000038, + 13.34851074200003 + ], + [ + 103.473693848000039, + 13.351074219000054 + ], + [ + 103.477111816000047, + 13.353698730000076 + ], + [ + 103.481323242000087, + 13.351318359000061 + ], + [ + 103.48468017600004, + 13.348327637000068 + ], + [ + 103.488708496000072, + 13.346130371000072 + ], + [ + 103.493713379000042, + 13.344482422000056 + ], + [ + 103.498107910000044, + 13.348327637000068 + ], + [ + 103.502075195000032, + 13.351074219000054 + ], + [ + 103.506103516000053, + 13.352722168000071 + ], + [ + 103.509521484000061, + 13.352478027000075 + ], + [ + 103.513305664000086, + 13.351684570000032 + ], + [ + 103.518310547000056, + 13.350891113000046 + ], + [ + 103.523071289000086, + 13.350280762000068 + ], + [ + 103.526916504000042, + 13.348083496000072 + ], + [ + 103.527709961000085, + 13.344482422000056 + ], + [ + 103.528503418000071, + 13.340881348000039 + ], + [ + 103.532104492000087, + 13.339294434000067 + ], + [ + 103.537292480000076, + 13.338317871000072 + ], + [ + 103.542907715000069, + 13.337280273000033 + ], + [ + 103.548706055000082, + 13.334472656000059 + ], + [ + 103.553100586000085, + 13.331909180000025 + ], + [ + 103.553527832000043, + 13.327270508000026 + ], + [ + 103.556518555000082, + 13.323486328000058 + ], + [ + 103.556518555000082, + 13.319885254000042 + ], + [ + 103.556701660000044, + 13.316528320000032 + ], + [ + 103.558288574000073, + 13.313476562000062 + ], + [ + 103.560729980000076, + 13.311523437000062 + ], + [ + 103.563293457000043, + 13.310302734000061 + ], + [ + 103.566528320000032, + 13.310485840000069 + ], + [ + 103.568725586000085, + 13.312927246000072 + ], + [ + 103.571716309000067, + 13.313293457000043 + ], + [ + 103.574707031000059, + 13.312927246000072 + ], + [ + 103.580078125000057, + 13.313903809000067 + ], + [ + 103.582275391000053, + 13.310119629000042 + ], + [ + 103.584106445000032, + 13.307312012000068 + ], + [ + 103.585876465000069, + 13.304077148000033 + ], + [ + 103.586914062000062, + 13.300476074000073 + ], + [ + 103.589721680000082, + 13.296875 + ], + [ + 103.592895508000083, + 13.294128418000071 + ], + [ + 103.596313477000081, + 13.293884277000075 + ], + [ + 103.59991455100004, + 13.293884277000075 + ], + [ + 103.603271484000061, + 13.295471191000047 + ], + [ + 103.606506348000039, + 13.293884277000075 + ], + [ + 103.610473633000083, + 13.292297363000046 + ], + [ + 103.613708496000072, + 13.295288086000028 + ], + [ + 103.616699219000054, + 13.295715332000043 + ], + [ + 103.620483398000033, + 13.296325684000067 + ], + [ + 103.624084473000039, + 13.297912598000039 + ], + [ + 103.627685547000056, + 13.297912598000039 + ], + [ + 103.632080078000058, + 13.295715332000043 + ], + [ + 103.635681152000075, + 13.29327392600004 + ], + [ + 103.639526367000087, + 13.292907715000069 + ], + [ + 103.643127441000047, + 13.294128418000071 + ], + [ + 103.646118164000086, + 13.29327392600004 + ], + [ + 103.649291992000087, + 13.290893555000025 + ], + [ + 103.653076172000056, + 13.289123535000044 + ], + [ + 103.654907227000081, + 13.286315918000071 + ], + [ + 103.657470703000058, + 13.284912109000061 + ], + [ + 103.661682129000042, + 13.283325195000032 + ], + [ + 103.664306641000053, + 13.278930664000029 + ], + [ + 103.667114258000083, + 13.276306152000075 + ], + [ + 103.669494629000042, + 13.274719238000046 + ], + [ + 103.672119141000053, + 13.276306152000075 + ], + [ + 103.675109863000046, + 13.278503418000071 + ], + [ + 103.678283691000047, + 13.281311035000044 + ], + [ + 103.677917480000076, + 13.284729004000042 + ], + [ + 103.683288574000073, + 13.286071777000075 + ], + [ + 103.687072754000042, + 13.28350830100004 + ], + [ + 103.690490723000039, + 13.281494141000053 + ], + [ + 103.694274902000075, + 13.278686523000033 + ], + [ + 103.698486328000058, + 13.276123047000056 + ], + [ + 103.70147705100004, + 13.273498535000044 + ], + [ + 103.704101562000062, + 13.271301270000038 + ], + [ + 103.706481934000067, + 13.267517090000069 + ], + [ + 103.707702637000068, + 13.264282227000024 + ], + [ + 103.706726074000073, + 13.260498047000056 + ], + [ + 103.705688477000081, + 13.257507324000073 + ], + [ + 103.703125, + 13.255493164000029 + ], + [ + 103.699096680000082, + 13.253112793000071 + ], + [ + 103.694885254000042, + 13.249877930000025 + ], + [ + 103.693298340000069, + 13.247070312000062 + ], + [ + 103.692321777000075, + 13.243530273000033 + ], + [ + 103.691528320000032, + 13.240295410000044 + ], + [ + 103.688903809000067, + 13.236328125000057 + ], + [ + 103.6875, + 13.231872559000067 + ], + [ + 103.688476562000062, + 13.227905273000033 + ], + [ + 103.687927246000072, + 13.224304199000073 + ], + [ + 103.686523437000062, + 13.220520020000038 + ], + [ + 103.685119629000042, + 13.216491699000073 + ], + [ + 103.687683105000076, + 13.214111328000058 + ], + [ + 103.691284180000082, + 13.211730957000043 + ], + [ + 103.692871094000054, + 13.206298828000058 + ], + [ + 103.694885254000042, + 13.202270508000026 + ], + [ + 103.696105957000043, + 13.199279785000044 + ], + [ + 103.697082520000038, + 13.195922852000024 + ], + [ + 103.698303223000039, + 13.192504883000026 + ], + [ + 103.698913574000073, + 13.189086914000029 + ], + [ + 103.699707031000059, + 13.186096191000047 + ], + [ + 103.700500488000046, + 13.183105469000054 + ], + [ + 103.70147705100004, + 13.179687500000057 + ], + [ + 103.702697754000042, + 13.176330566000047 + ], + [ + 103.703674316000047, + 13.171325684000067 + ], + [ + 103.702697754000042, + 13.167114258000026 + ], + [ + 103.701721191000047, + 13.163330078000058 + ], + [ + 103.701904297000056, + 13.160278320000032 + ], + [ + 103.702514648000033, + 13.156677246000072 + ], + [ + 103.702270508000083, + 13.152526855000076 + ], + [ + 103.702514648000033, + 13.148925781000059 + ], + [ + 103.702697754000042, + 13.145080566000047 + ], + [ + 103.703308105000076, + 13.140319824000073 + ], + [ + 103.704284668000071, + 13.134887695000032 + ], + [ + 103.705505371000072, + 13.13171386700003 + ], + [ + 103.704895020000038, + 13.127685547000056 + ], + [ + 103.705322266000053, + 13.122924805000025 + ], + [ + 103.706115723000039, + 13.118713379000042 + ], + [ + 103.705505371000072, + 13.114929199000073 + ], + [ + 103.707519531000059, + 13.111328125000057 + ], + [ + 103.707702637000068, + 13.107482910000044 + ], + [ + 103.704528809000067, + 13.108093262000068 + ], + [ + 103.705322266000053, + 13.105285645000038 + ], + [ + 103.705688477000081, + 13.101074219000054 + ], + [ + 103.706726074000073, + 13.095520020000038 + ], + [ + 103.707092285000044, + 13.092529297000056 + ], + [ + 103.707519531000059, + 13.089477539000029 + ], + [ + 103.708923340000069, + 13.085510254000042 + ], + [ + 103.711486816000047, + 13.080688477000024 + ], + [ + 103.713928223000039, + 13.076904297000056 + ], + [ + 103.715881348000039, + 13.073913574000073 + ], + [ + 103.718872070000032, + 13.070678711000028 + ], + [ + 103.721313477000081, + 13.067687988000046 + ], + [ + 103.722900391000053, + 13.065124512000068 + ], + [ + 103.724487305000082, + 13.062683105000076 + ], + [ + 103.726318359000061, + 13.059875488000046 + ], + [ + 103.729309082000043, + 13.05889892600004 + ], + [ + 103.731689453000058, + 13.056701660000044 + ], + [ + 103.736694336000085, + 13.054077148000033 + ], + [ + 103.739501953000058, + 13.051330566000047 + ], + [ + 103.736328125000057, + 13.050109863000046 + ], + [ + 103.739501953000058, + 13.048278809000067 + ], + [ + 103.741516113000046, + 13.044921875000057 + ], + [ + 103.742919922000056, + 13.041687012000068 + ], + [ + 103.746704102000081, + 13.040100098000039 + ], + [ + 103.751098633000083, + 13.040100098000039 + ], + [ + 103.754882812000062, + 13.039306641000053 + ], + [ + 103.758911133000083, + 13.037902832000043 + ], + [ + 103.761474609000061, + 13.036682129000042 + ], + [ + 103.764099121000072, + 13.033691406000059 + ], + [ + 103.766296387000068, + 13.031311035000044 + ], + [ + 103.772094727000081, + 13.026306152000075 + ], + [ + 103.771728516000053, + 13.022888184000067 + ], + [ + 103.770690918000071, + 13.019714355000076 + ], + [ + 103.769287109000061, + 13.016296387000068 + ], + [ + 103.765075684000067, + 13.014709473000039 + ], + [ + 103.761474609000061, + 13.013488770000038 + ], + [ + 103.758483887000068, + 13.012878418000071 + ], + [ + 103.755676270000038, + 13.011291504000042 + ], + [ + 103.752502441000047, + 13.010498047000056 + ], + [ + 103.748107910000044, + 13.011474609000061 + ], + [ + 103.744323730000076, + 13.009704590000069 + ], + [ + 103.740905762000068, + 13.007324219000054 + ], + [ + 103.740112305000082, + 13.003295898000033 + ], + [ + 103.738891602000081, + 12.999511719000054 + ], + [ + 103.735473633000083, + 12.997314453000058 + ], + [ + 103.732116699000073, + 12.995117187000062 + ], + [ + 103.731323242000087, + 12.992309570000032 + ], + [ + 103.731079102000081, + 12.987487793000071 + ], + [ + 103.730529785000044, + 12.984313965000069 + ], + [ + 103.727478027000075, + 12.982116699000073 + ], + [ + 103.725524902000075, + 12.978881836000028 + ], + [ + 103.722290039000086, + 12.976318359000061 + ], + [ + 103.718872070000032, + 12.974121094000054 + ], + [ + 103.718322754000042, + 12.970886230000076 + ], + [ + 103.718872070000032, + 12.967712402000075 + ], + [ + 103.718078613000046, + 12.962707520000038 + ], + [ + 103.718872070000032, + 12.957702637000068 + ], + [ + 103.720520020000038, + 12.952880859000061 + ], + [ + 103.722290039000086, + 12.950683594000054 + ], + [ + 103.72491455100004, + 12.94952392600004 + ], + [ + 103.729309082000043, + 12.94812011700003 + ], + [ + 103.730895996000072, + 12.943908691000047 + ], + [ + 103.732116699000073, + 12.940124512000068 + ], + [ + 103.732910156000059, + 12.936096191000047 + ], + [ + 103.732116699000073, + 12.932678223000039 + ], + [ + 103.729309082000043, + 12.929077148000033 + ], + [ + 103.724487305000082, + 12.929504395000038 + ], + [ + 103.721679687000062, + 12.927917480000076 + ], + [ + 103.717285156000059, + 12.927490234000061 + ], + [ + 103.712280273000033, + 12.926330566000047 + ], + [ + 103.710876465000069, + 12.923278809000067 + ], + [ + 103.708679199000073, + 12.920898437000062 + ], + [ + 103.705505371000072, + 12.919311523000033 + ], + [ + 103.703308105000076, + 12.91687011700003 + ], + [ + 103.701110840000069, + 12.91491699200003 + ], + [ + 103.702087402000075, + 12.911926270000038 + ], + [ + 103.700683594000054, + 12.90850830100004 + ], + [ + 103.701110840000069, + 12.904724121000072 + ], + [ + 103.700927734000061, + 12.901672363000046 + ], + [ + 103.697509766000053, + 12.89929199200003 + ], + [ + 103.695922852000081, + 12.895690918000071 + ], + [ + 103.697692871000072, + 12.891296387000068 + ], + [ + 103.696472168000071, + 12.887329102000024 + ], + [ + 103.696105957000043, + 12.883911133000026 + ], + [ + 103.697326660000044, + 12.879089355000076 + ], + [ + 103.696472168000071, + 12.874694824000073 + ], + [ + 103.694519043000071, + 12.869506836000028 + ], + [ + 103.691528320000032, + 12.865722656000059 + ], + [ + 103.688903809000067, + 12.863281250000057 + ], + [ + 103.685913086000085, + 12.864318848000039 + ], + [ + 103.683105469000054, + 12.862487793000071 + ], + [ + 103.679687500000057, + 12.862304687000062 + ], + [ + 103.674316406000059, + 12.863281250000057 + ], + [ + 103.668518066000047, + 12.863525391000053 + ], + [ + 103.664306641000053, + 12.862487793000071 + ], + [ + 103.660095215000069, + 12.860900879000042 + ], + [ + 103.655517578000058, + 12.859130859000061 + ], + [ + 103.652709961000085, + 12.856689453000058 + ], + [ + 103.648315430000082, + 12.855895996000072 + ], + [ + 103.643493652000075, + 12.854492187000062 + ], + [ + 103.639892578000058, + 12.852111816000047 + ], + [ + 103.636901855000076, + 12.848693848000039 + ], + [ + 103.633300781000059, + 12.845092773000033 + ], + [ + 103.633300781000059, + 12.84069824200003 + ], + [ + 103.631103516000053, + 12.835876465000069 + ], + [ + 103.629882812000062, + 12.832519531000059 + ], + [ + 103.631713867000087, + 12.828918457000043 + ], + [ + 103.631530762000068, + 12.825927734000061 + ], + [ + 103.632324219000054, + 12.82312011700003 + ], + [ + 103.635498047000056, + 12.822875977000024 + ], + [ + 103.638305664000086, + 12.821899414000029 + ], + [ + 103.642517090000069, + 12.820495605000076 + ], + [ + 103.644470215000069, + 12.816284180000025 + ], + [ + 103.643920898000033, + 12.812683105000076 + ], + [ + 103.641479492000087, + 12.809082031000059 + ], + [ + 103.639099121000072, + 12.805480957000043 + ], + [ + 103.636474609000061, + 12.803283691000047 + ], + [ + 103.63507080100004, + 12.799316406000059 + ], + [ + 103.635314941000047, + 12.794921875000057 + ], + [ + 103.633728027000075, + 12.790527344000054 + ], + [ + 103.63311767600004, + 12.786071777000075 + ], + [ + 103.629516602000081, + 12.784118652000075 + ], + [ + 103.625671387000068, + 12.780273437000062 + ], + [ + 103.623107910000044, + 12.777709961000028 + ], + [ + 103.623718262000068, + 12.774108887000068 + ], + [ + 103.622314453000058, + 12.770080566000047 + ], + [ + 103.619873047000056, + 12.766296387000068 + ], + [ + 103.622680664000086, + 12.763916016000053 + ], + [ + 103.620117187000062, + 12.762695312000062 + ], + [ + 103.621276855000076, + 12.76007080100004 + ], + [ + 103.622924805000082, + 12.755493164000029 + ], + [ + 103.621093750000057, + 12.751708984000061 + ], + [ + 103.619873047000056, + 12.748107910000044 + ], + [ + 103.621093750000057, + 12.745300293000071 + ], + [ + 103.621093750000057, + 12.741516113000046 + ], + [ + 103.623291016000053, + 12.737487793000071 + ], + [ + 103.623474121000072, + 12.734497070000032 + ], + [ + 103.624328613000046, + 12.729919434000067 + ], + [ + 103.623474121000072, + 12.724487305000025 + ], + [ + 103.623718262000068, + 12.721130371000072 + ], + [ + 103.626525879000042, + 12.717712402000075 + ], + [ + 103.630676270000038, + 12.714904785000044 + ], + [ + 103.631286621000072, + 12.710083008000026 + ], + [ + 103.634521484000061, + 12.70788574200003 + ], + [ + 103.63507080100004, + 12.703918457000043 + ], + [ + 103.635498047000056, + 12.699890137000068 + ], + [ + 103.619323730000076, + 12.677124023000033 + ], + [ + 103.639526367000087, + 12.664489746000072 + ], + [ + 103.642089844000054, + 12.666503906000059 + ], + [ + 103.645080566000047, + 12.663330078000058 + ], + [ + 103.644470215000069, + 12.659301758000026 + ], + [ + 103.645324707000043, + 12.655273437000062 + ], + [ + 103.645690918000071, + 12.651123047000056 + ], + [ + 103.646118164000086, + 12.647888184000067 + ], + [ + 103.648315430000082, + 12.643920898000033 + ], + [ + 103.648498535000044, + 12.63952636700003 + ], + [ + 103.645324707000043, + 12.637329102000024 + ], + [ + 103.641296387000068, + 12.63507080100004 + ], + [ + 103.638671875000057, + 12.63311767600004 + ], + [ + 103.639892578000058, + 12.630493164000029 + ], + [ + 103.636901855000076, + 12.629516602000024 + ], + [ + 103.636474609000061, + 12.625915527000075 + ], + [ + 103.636291504000042, + 12.622497559000067 + ], + [ + 103.635498047000056, + 12.619506836000028 + ], + [ + 103.635498047000056, + 12.616271973000039 + ], + [ + 103.635681152000075, + 12.613098145000038 + ], + [ + 103.638122559000067, + 12.610900879000042 + ], + [ + 103.640502930000082, + 12.608093262000068 + ], + [ + 103.639892578000058, + 12.604675293000071 + ], + [ + 103.636474609000061, + 12.602905273000033 + ], + [ + 103.634521484000061, + 12.599304199000073 + ], + [ + 103.632690430000082, + 12.595886230000076 + ], + [ + 103.634277344000054, + 12.591918945000032 + ], + [ + 103.637878418000071, + 12.590270996000072 + ], + [ + 103.638671875000057, + 12.587097168000071 + ], + [ + 103.641113281000059, + 12.582702637000068 + ], + [ + 103.642517090000069, + 12.578125 + ], + [ + 103.64093017600004, + 12.575317383000026 + ], + [ + 103.637329102000081, + 12.574096680000025 + ], + [ + 103.633911133000083, + 12.570312500000057 + ], + [ + 103.634277344000054, + 12.56671142600004 + ], + [ + 103.630493164000086, + 12.563476562000062 + ], + [ + 103.626281738000046, + 12.5625 + ], + [ + 103.622680664000086, + 12.560119629000042 + ], + [ + 103.623291016000053, + 12.555908203000058 + ], + [ + 103.622497559000067, + 12.552917480000076 + ], + [ + 103.621093750000057, + 12.549316406000059 + ], + [ + 103.619689941000047, + 12.545104980000076 + ], + [ + 103.618530273000033, + 12.541687012000068 + ], + [ + 103.615478516000053, + 12.540100098000039 + ], + [ + 103.614501953000058, + 12.536682129000042 + ], + [ + 103.614929199000073, + 12.53350830100004 + ], + [ + 103.612670898000033, + 12.530700684000067 + ], + [ + 103.611328125000057, + 12.527282715000069 + ], + [ + 103.608703613000046, + 12.524719238000046 + ], + [ + 103.602478027000075, + 12.522888184000067 + ], + [ + 103.597717285000044, + 12.522705078000058 + ], + [ + 103.592895508000083, + 12.523071289000029 + ], + [ + 103.587524414000086, + 12.523071289000029 + ], + [ + 103.581909180000082, + 12.522277832000043 + ], + [ + 103.575927734000061, + 12.521911621000072 + ], + [ + 103.562683105000076, + 12.521118164000029 + ], + [ + 103.545715332000043, + 12.514892578000058 + ], + [ + 103.539306641000053, + 12.513671875000057 + ], + [ + 103.524719238000046, + 12.505310059000067 + ], + [ + 103.519714355000076, + 12.504516602000024 + ], + [ + 103.513916016000053, + 12.504272461000028 + ], + [ + 103.509521484000061, + 12.504882812000062 + ], + [ + 103.506713867000087, + 12.505676270000038 + ], + [ + 103.503112793000071, + 12.507324219000054 + ], + [ + 103.50030517600004, + 12.508728027000075 + ], + [ + 103.497070312000062, + 12.510498047000056 + ], + [ + 103.492126465000069, + 12.512084961000028 + ], + [ + 103.489501953000058, + 12.513671875000057 + ], + [ + 103.486328125000057, + 12.514709473000039 + ], + [ + 103.483276367000087, + 12.518127441000047 + ], + [ + 103.477478027000075, + 12.521728516000053 + ], + [ + 103.472106934000067, + 12.524902344000054 + ], + [ + 103.468505859000061, + 12.526306152000075 + ], + [ + 103.465515137000068, + 12.528503418000071 + ], + [ + 103.463073730000076, + 12.531127930000025 + ], + [ + 103.461303711000085, + 12.533691406000059 + ], + [ + 103.458679199000073, + 12.535522461000028 + ], + [ + 103.454895020000038, + 12.536926270000038 + ], + [ + 103.449890137000068, + 12.537902832000043 + ], + [ + 103.446716309000067, + 12.538330078000058 + ], + [ + 103.443908691000047, + 12.539489746000072 + ], + [ + 103.440917969000054, + 12.539306641000053 + ], + [ + 103.436096191000047, + 12.54187011700003 + ], + [ + 103.431518555000082, + 12.543884277000075 + ], + [ + 103.427124023000033, + 12.545715332000043 + ], + [ + 103.422485352000081, + 12.547119141000053 + ], + [ + 103.417480469000054, + 12.54968261700003 + ], + [ + 103.414489746000072, + 12.550903320000032 + ], + [ + 103.411315918000071, + 12.552124023000033 + ], + [ + 103.407897949000073, + 12.554321289000029 + ], + [ + 103.404296875000057, + 12.556518555000025 + ], + [ + 103.399719238000046, + 12.558105469000054 + ], + [ + 103.396484375000057, + 12.55889892600004 + ], + [ + 103.393127441000047, + 12.559692383000026 + ], + [ + 103.388916016000053, + 12.557922363000046 + ], + [ + 103.385681152000075, + 12.557922363000046 + ], + [ + 103.381713867000087, + 12.557128906000059 + ], + [ + 103.377502441000047, + 12.553894043000071 + ], + [ + 103.373291016000053, + 12.550903320000032 + ], + [ + 103.369689941000047, + 12.550476074000073 + ], + [ + 103.365295410000044, + 12.551330566000047 + ], + [ + 103.361877441000047, + 12.552307129000042 + ], + [ + 103.360900879000042, + 12.557128906000059 + ], + [ + 103.360107422000056, + 12.560302734000061 + ], + [ + 103.356323242000087, + 12.561096191000047 + ], + [ + 103.352111816000047, + 12.561889648000033 + ], + [ + 103.346496582000043, + 12.563293457000043 + ], + [ + 103.341918945000032, + 12.564514160000044 + ], + [ + 103.337524414000086, + 12.565673828000058 + ], + [ + 103.334472656000059, + 12.566284180000025 + ], + [ + 103.331481934000067, + 12.566894531000059 + ], + [ + 103.327880859000061, + 12.567687988000046 + ], + [ + 103.324707031000059, + 12.56671142600004 + ], + [ + 103.325927734000061, + 12.562683105000076 + ], + [ + 103.327697754000042, + 12.560485840000069 + ], + [ + 103.322692871000072, + 12.559326172000056 + ], + [ + 103.318908691000047, + 12.560119629000042 + ], + [ + 103.314514160000044, + 12.558715820000032 + ], + [ + 103.311279297000056, + 12.560729980000076 + ], + [ + 103.307312012000068, + 12.560302734000061 + ], + [ + 103.303527832000043, + 12.558471680000025 + ], + [ + 103.302917480000076, + 12.554504395000038 + ], + [ + 103.303710937000062, + 12.550292969000054 + ], + [ + 103.301879883000083, + 12.546081543000071 + ], + [ + 103.297485352000081, + 12.547302246000072 + ], + [ + 103.293884277000075, + 12.548889160000044 + ], + [ + 103.289489746000072, + 12.549926758000026 + ], + [ + 103.285888672000056, + 12.54968261700003 + ], + [ + 103.28350830100004, + 12.547485352000024 + ], + [ + 103.281311035000044, + 12.542907715000069 + ], + [ + 103.278076172000056, + 12.54327392600004 + ], + [ + 103.274475098000039, + 12.542907715000069 + ], + [ + 103.271484375000057, + 12.540893555000025 + ], + [ + 103.269897461000085, + 12.537719727000024 + ], + [ + 103.268310547000056, + 12.534118652000075 + ], + [ + 103.264526367000087, + 12.531677246000072 + ], + [ + 103.261718750000057, + 12.530883789000029 + ], + [ + 103.258728027000075, + 12.530090332000043 + ], + [ + 103.255493164000086, + 12.528503418000071 + ], + [ + 103.253295898000033, + 12.525329590000069 + ], + [ + 103.251281738000046, + 12.521728516000053 + ], + [ + 103.248107910000044, + 12.519714355000076 + ], + [ + 103.243713379000042, + 12.520507812000062 + ], + [ + 103.240478516000053, + 12.522094727000024 + ], + [ + 103.238098145000038, + 12.52429199200003 + ], + [ + 103.234497070000032, + 12.52569580100004 + ], + [ + 103.230895996000072, + 12.526489258000026 + ], + [ + 103.227111816000047, + 12.526489258000026 + ], + [ + 103.223083496000072, + 12.524902344000054 + ], + [ + 103.219909668000071, + 12.522521973000039 + ], + [ + 103.217285156000059, + 12.520507812000062 + ], + [ + 103.214721680000082, + 12.518127441000047 + ], + [ + 103.211730957000043, + 12.515075684000067 + ], + [ + 103.209472656000059, + 12.512878418000071 + ], + [ + 103.207092285000044, + 12.511291504000042 + ], + [ + 103.204101562000062, + 12.510498047000056 + ], + [ + 103.200317383000083, + 12.509887695000032 + ], + [ + 103.196289062000062, + 12.509094238000046 + ], + [ + 103.192077637000068, + 12.508300781000059 + ], + [ + 103.186706543000071, + 12.50671386700003 + ], + [ + 103.182922363000046, + 12.504882812000062 + ], + [ + 103.179687500000057, + 12.502319336000028 + ], + [ + 103.175903320000032, + 12.497924805000025 + ], + [ + 103.172485352000081, + 12.495300293000071 + ], + [ + 103.169311523000033, + 12.492919922000056 + ], + [ + 103.166687012000068, + 12.489685059000067 + ], + [ + 103.164916992000087, + 12.486877441000047 + ], + [ + 103.162719727000081, + 12.483886719000054 + ], + [ + 103.159729004000042, + 12.48132324200003 + ], + [ + 103.155700684000067, + 12.48132324200003 + ], + [ + 103.152526855000076, + 12.48272705100004 + ], + [ + 103.149719238000046, + 12.484497070000032 + ], + [ + 103.146911621000072, + 12.486328125000057 + ], + [ + 103.144470215000069, + 12.488098145000038 + ], + [ + 103.140686035000044, + 12.489501953000058 + ], + [ + 103.136718750000057, + 12.488708496000072 + ], + [ + 103.135925293000071, + 12.484924316000047 + ], + [ + 103.132690430000082, + 12.48327636700003 + ], + [ + 103.128295898000033, + 12.48272705100004 + ], + [ + 103.114318848000039, + 12.47351074200003 + ], + [ + 103.105285645000038, + 12.468078613000046 + ], + [ + 103.103271484000061, + 12.463684082000043 + ], + [ + 103.099121094000054, + 12.463684082000043 + ], + [ + 103.094726562000062, + 12.462707520000038 + ], + [ + 103.090881348000039, + 12.464111328000058 + ], + [ + 103.087280273000033, + 12.464721680000025 + ], + [ + 103.083129883000083, + 12.464477539000029 + ], + [ + 103.079711914000086, + 12.462524414000029 + ], + [ + 103.07647705100004, + 12.460327148000033 + ], + [ + 103.072326660000044, + 12.459716797000056 + ], + [ + 103.070678711000085, + 12.456298828000058 + ], + [ + 103.071289062000062, + 12.45147705100004 + ], + [ + 103.071716309000067, + 12.444702148000033 + ], + [ + 103.071105957000043, + 12.440124512000068 + ], + [ + 103.06671142600004, + 12.4375 + ], + [ + 103.061889648000033, + 12.438476562000062 + ], + [ + 103.057922363000046, + 12.438476562000062 + ], + [ + 103.053527832000043, + 12.439086914000029 + ], + [ + 103.048889160000044, + 12.440673828000058 + ], + [ + 103.046325684000067, + 12.442077637000068 + ], + [ + 103.042724609000061, + 12.442871094000054 + ], + [ + 103.037475586000085, + 12.443481445000032 + ], + [ + 103.033325195000032, + 12.443725586000028 + ], + [ + 103.030517578000058, + 12.445312500000057 + ], + [ + 103.027282715000069, + 12.447082520000038 + ], + [ + 103.022521973000039, + 12.447509766000053 + ], + [ + 103.020690918000071, + 12.450317383000026 + ], + [ + 103.019897461000085, + 12.454284668000071 + ], + [ + 103.017700195000032, + 12.458496094000054 + ], + [ + 103.014526367000087, + 12.462524414000029 + ], + [ + 103.010925293000071, + 12.46710205100004 + ], + [ + 103.008911133000083, + 12.471130371000072 + ], + [ + 103.008483887000068, + 12.474670410000044 + ], + [ + 103.006286621000072, + 12.477722168000071 + ], + [ + 103.002502441000047, + 12.479492187000062 + ], + [ + 103.000671387000068, + 12.482116699000073 + ], + [ + 102.998901367000087, + 12.48468017600004 + ], + [ + 102.995727539000086, + 12.48468017600004 + ], + [ + 102.99249267600004, + 12.481506348000039 + ], + [ + 102.988891602000081, + 12.479492187000062 + ], + [ + 102.986877441000047, + 12.477294922000056 + ], + [ + 102.985473633000083, + 12.474670410000044 + ], + [ + 102.982299805000082, + 12.472290039000029 + ], + [ + 102.980712891000053, + 12.468872070000032 + ], + [ + 102.978881836000085, + 12.466125488000046 + ], + [ + 102.976074219000054, + 12.461486816000047 + ], + [ + 102.973693848000039, + 12.457702637000068 + ], + [ + 102.973876953000058, + 12.454101562000062 + ], + [ + 102.974670410000044, + 12.450927734000061 + ], + [ + 102.971923828000058, + 12.44952392600004 + ], + [ + 102.968872070000032, + 12.44812011700003 + ], + [ + 102.965515137000068, + 12.446899414000029 + ], + [ + 102.962280273000033, + 12.445922852000024 + ], + [ + 102.959472656000059, + 12.444091797000056 + ], + [ + 102.954895020000038, + 12.442871094000054 + ], + [ + 102.951293945000032, + 12.440673828000058 + ], + [ + 102.950683594000054, + 12.436889648000033 + ], + [ + 102.947082520000038, + 12.433288574000073 + ], + [ + 102.942687988000046, + 12.431518555000025 + ], + [ + 102.938720703000058, + 12.431274414000029 + ], + [ + 102.935302734000061, + 12.432678223000039 + ], + [ + 102.931701660000044, + 12.432312012000068 + ], + [ + 102.928100586000085, + 12.432922363000046 + ], + [ + 102.924072266000053, + 12.434509277000075 + ], + [ + 102.921081543000071, + 12.432312012000068 + ], + [ + 102.918701172000056, + 12.430725098000039 + ], + [ + 102.915710449000073, + 12.430908203000058 + ], + [ + 102.912475586000085, + 12.428894043000071 + ], + [ + 102.909484863000046, + 12.431091309000067 + ], + [ + 102.906677246000072, + 12.433288574000073 + ], + [ + 102.903076172000056, + 12.432128906000059 + ], + [ + 102.901123047000056, + 12.428527832000043 + ], + [ + 102.897277832000043, + 12.424072266000053 + ], + [ + 102.894470215000069, + 12.420715332000043 + ], + [ + 102.891723633000083, + 12.419311523000033 + ], + [ + 102.889892578000058, + 12.41687011700003 + ], + [ + 102.887512207000043, + 12.413879395000038 + ], + [ + 102.88311767600004, + 12.412292480000076 + ], + [ + 102.881530762000068, + 12.407897949000073 + ], + [ + 102.877075195000032, + 12.40710449200003 + ], + [ + 102.875488281000059, + 12.403930664000029 + ], + [ + 102.873718262000068, + 12.401672363000046 + ], + [ + 102.873474121000072, + 12.398315430000025 + ], + [ + 102.870483398000033, + 12.397521973000039 + ], + [ + 102.866699219000054, + 12.39929199200003 + ], + [ + 102.864074707000043, + 12.40069580100004 + ], + [ + 102.860473633000083, + 12.401916504000042 + ], + [ + 102.856872559000067, + 12.403320312000062 + ], + [ + 102.853088379000042, + 12.403686523000033 + ], + [ + 102.851318359000061, + 12.40710449200003 + ], + [ + 102.847473145000038, + 12.409118652000075 + ], + [ + 102.843872070000032, + 12.409118652000075 + ], + [ + 102.840515137000068, + 12.411499023000033 + ], + [ + 102.836120605000076, + 12.411682129000042 + ], + [ + 102.834472656000059, + 12.408081055000025 + ], + [ + 102.832092285000044, + 12.405517578000058 + ], + [ + 102.829711914000086, + 12.403503418000071 + ], + [ + 102.826904297000056, + 12.40069580100004 + ], + [ + 102.826293945000032, + 12.397521973000039 + ], + [ + 102.823913574000073, + 12.395690918000071 + ], + [ + 102.820495605000076, + 12.392700195000032 + ], + [ + 102.818908691000047, + 12.388488770000038 + ], + [ + 102.817504883000083, + 12.385681152000075 + ], + [ + 102.819519043000071, + 12.381286621000072 + ], + [ + 102.818908691000047, + 12.376892090000069 + ], + [ + 102.815307617000087, + 12.376098633000026 + ], + [ + 102.812316895000038, + 12.372924805000025 + ], + [ + 102.809509277000075, + 12.371520996000072 + ], + [ + 102.807922363000046, + 12.374328613000046 + ], + [ + 102.804687500000057, + 12.375671387000068 + ], + [ + 102.80108642600004, + 12.378112793000071 + ], + [ + 102.797729492000087, + 12.381103516000053 + ], + [ + 102.795898437000062, + 12.384277344000054 + ], + [ + 102.794494629000042, + 12.387878418000071 + ], + [ + 102.79132080100004, + 12.392272949000073 + ], + [ + 102.788085937000062, + 12.396728516000053 + ], + [ + 102.784912109000061, + 12.400329590000069 + ], + [ + 102.784912109000061, + 12.404296875000057 + ], + [ + 102.786315918000071, + 12.409118652000075 + ], + [ + 102.787109375000057, + 12.414489746000072 + ], + [ + 102.786071777000075, + 12.419128418000071 + ], + [ + 102.785095215000069, + 12.423278809000067 + ], + [ + 102.783874512000068, + 12.427124023000033 + ], + [ + 102.781921387000068, + 12.429870605000076 + ], + [ + 102.781127930000082, + 12.433715820000032 + ], + [ + 102.778320312000062, + 12.435729980000076 + ], + [ + 102.774291992000087, + 12.435119629000042 + ], + [ + 102.771911621000072, + 12.438476562000062 + ], + [ + 102.770324707000043, + 12.441284180000025 + ], + [ + 102.769470215000069, + 12.444885254000042 + ], + [ + 102.769104004000042, + 12.44812011700003 + ], + [ + 102.767517090000069, + 12.451110840000069 + ], + [ + 102.766113281000059, + 12.455322266000053 + ], + [ + 102.762878418000071, + 12.456481934000067 + ], + [ + 102.75811767600004, + 12.457092285000044 + ], + [ + 102.753479004000042, + 12.457702637000068 + ], + [ + 102.75030517600004, + 12.461486816000047 + ], + [ + 102.746276855000076, + 12.458679199000073 + ], + [ + 102.743896484000061, + 12.461303711000028 + ], + [ + 102.742919922000056, + 12.464477539000029 + ], + [ + 102.740112305000082, + 12.466308594000054 + ], + [ + 102.736877441000047, + 12.467285156000059 + ], + [ + 102.737304687000062, + 12.471496582000043 + ], + [ + 102.737487793000071, + 12.475891113000046 + ], + [ + 102.739501953000058, + 12.48132324200003 + ], + [ + 102.736694336000085, + 12.485290527000075 + ], + [ + 102.734130859000061, + 12.488525391000053 + ], + [ + 102.730895996000072, + 12.490295410000044 + ], + [ + 102.726928711000085, + 12.488525391000053 + ], + [ + 102.724670410000044, + 12.486328125000057 + ], + [ + 102.721313477000081, + 12.486511230000076 + ], + [ + 102.720275879000042, + 12.490905762000068 + ], + [ + 102.723327637000068, + 12.493896484000061 + ], + [ + 102.725524902000075, + 12.496704102000024 + ], + [ + 102.723876953000058, + 12.499877930000025 + ], + [ + 102.725280762000068, + 12.504089355000076 + ], + [ + 102.727111816000047, + 12.506896973000039 + ], + [ + 102.729125977000081, + 12.509521484000061 + ], + [ + 102.727905273000033, + 12.512512207000043 + ], + [ + 102.72491455100004, + 12.512878418000071 + ], + [ + 102.722106934000067, + 12.511901855000076 + ], + [ + 102.718872070000032, + 12.508728027000075 + ], + [ + 102.715270996000072, + 12.507080078000058 + ], + [ + 102.711303711000085, + 12.509094238000046 + ], + [ + 102.707275391000053, + 12.511718750000057 + ], + [ + 102.705078125000057, + 12.514892578000058 + ], + [ + 102.705505371000072, + 12.518493652000075 + ], + [ + 102.70147705100004, + 12.520080566000047 + ], + [ + 102.696472168000071, + 12.519897461000028 + ], + [ + 102.695495605000076, + 12.523498535000044 + ], + [ + 102.696716309000067, + 12.526916504000042 + ], + [ + 102.693725586000085, + 12.529724121000072 + ], + [ + 102.690917969000054, + 12.533325195000032 + ], + [ + 102.687072754000042, + 12.535888672000056 + ], + [ + 102.683105469000054, + 12.537475586000028 + ], + [ + 102.679504395000038, + 12.537475586000028 + ], + [ + 102.677917480000076, + 12.54132080100004 + ], + [ + 102.680725098000039, + 12.545288086000028 + ], + [ + 102.684082031000059, + 12.548889160000044 + ], + [ + 102.681274414000086, + 12.553100586000028 + ], + [ + 102.678710937000062, + 12.555908203000058 + ], + [ + 102.675903320000032, + 12.559082031000059 + ], + [ + 102.671691895000038, + 12.561279297000056 + ], + [ + 102.66827392600004, + 12.563110352000024 + ], + [ + 102.668090820000032, + 12.566894531000059 + ], + [ + 102.667114258000083, + 12.570129395000038 + ], + [ + 102.667297363000046, + 12.573303223000039 + ], + [ + 102.665527344000054, + 12.577087402000075 + ], + [ + 102.662475586000085, + 12.581481934000067 + ], + [ + 102.658691406000059, + 12.581909180000025 + ], + [ + 102.655090332000043, + 12.582702637000068 + ], + [ + 102.650878906000059, + 12.582702637000068 + ], + [ + 102.645874023000033, + 12.584899902000075 + ], + [ + 102.645080566000047, + 12.590515137000068 + ], + [ + 102.645080566000047, + 12.595092773000033 + ], + [ + 102.647888184000067, + 12.598083496000072 + ], + [ + 102.647277832000043, + 12.603088379000042 + ], + [ + 102.646728516000053, + 12.607116699000073 + ], + [ + 102.644470215000069, + 12.611328125000057 + ], + [ + 102.639099121000072, + 12.610900879000042 + ], + [ + 102.634277344000054, + 12.609924316000047 + ], + [ + 102.629699707000043, + 12.610473633000026 + ], + [ + 102.628112793000071, + 12.614074707000043 + ], + [ + 102.623901367000087, + 12.615478516000053 + ], + [ + 102.619873047000056, + 12.615295410000044 + ], + [ + 102.615478516000053, + 12.617126465000069 + ], + [ + 102.612670898000033, + 12.620727539000029 + ], + [ + 102.609924316000047, + 12.622680664000029 + ], + [ + 102.607482910000044, + 12.624694824000073 + ], + [ + 102.605895996000072, + 12.627685547000056 + ], + [ + 102.602905273000033, + 12.629089355000076 + ], + [ + 102.598876953000058, + 12.630676270000038 + ], + [ + 102.596496582000043, + 12.633300781000059 + ], + [ + 102.593078613000046, + 12.636108398000033 + ], + [ + 102.589477539000086, + 12.639709473000039 + ], + [ + 102.586730957000043, + 12.641906738000046 + ], + [ + 102.584899902000075, + 12.644104004000042 + ], + [ + 102.581909180000082, + 12.646484375000057 + ], + [ + 102.581298828000058, + 12.65069580100004 + ], + [ + 102.579101562000062, + 12.653503418000071 + ], + [ + 102.575683594000054, + 12.653686523000033 + ], + [ + 102.572509766000053, + 12.653503418000071 + ], + [ + 102.569702148000033, + 12.654724121000072 + ], + [ + 102.566528320000032, + 12.657470703000058 + ], + [ + 102.561523437000062, + 12.655700684000067 + ], + [ + 102.556701660000044, + 12.653320312000062 + ], + [ + 102.552307129000042, + 12.653076172000056 + ], + [ + 102.549499512000068, + 12.655700684000067 + ], + [ + 102.544921875000057, + 12.656127930000025 + ], + [ + 102.541870117000087, + 12.654296875000057 + ], + [ + 102.539123535000044, + 12.652099609000061 + ], + [ + 102.536315918000071, + 12.652709961000028 + ], + [ + 102.532897949000073, + 12.653320312000062 + ], + [ + 102.529724121000072, + 12.654907227000024 + ], + [ + 102.525878906000059, + 12.657897949000073 + ], + [ + 102.522888184000067, + 12.660705566000047 + ], + [ + 102.519470215000069, + 12.662902832000043 + ], + [ + 102.564086914000086, + 12.671875 + ], + [ + 102.621093750000057, + 12.681884766000053 + ], + [ + 102.666687012000068, + 12.689880371000072 + ], + [ + 102.685913086000085, + 12.702880859000061 + ], + [ + 102.731506348000039, + 12.733703613000046 + ], + [ + 102.743286133000083, + 12.741516113000046 + ], + [ + 102.746276855000076, + 12.743713379000042 + ], + [ + 102.753295898000033, + 12.749511719000054 + ], + [ + 102.753295898000033, + 12.79327392600004 + ], + [ + 102.752319336000085, + 12.865112305000025 + ], + [ + 102.752075195000032, + 12.892272949000073 + ], + [ + 102.751892090000069, + 12.923095703000058 + ], + [ + 102.751708984000061, + 12.965087891000053 + ], + [ + 102.751525879000042, + 13.001892090000069 + ], + [ + 102.751281738000046, + 13.026672363000046 + ], + [ + 102.746887207000043, + 13.032470703000058 + ], + [ + 102.735473633000083, + 13.044494629000042 + ], + [ + 102.694519043000071, + 13.102294922000056 + ], + [ + 102.689697266000053, + 13.103698730000076 + ], + [ + 102.687072754000042, + 13.101074219000054 + ], + [ + 102.685485840000069, + 13.103881836000028 + ], + [ + 102.684326172000056, + 13.107299805000025 + ], + [ + 102.680480957000043, + 13.110107422000056 + ], + [ + 102.676513672000056, + 13.110717773000033 + ], + [ + 102.672729492000087, + 13.111328125000057 + ], + [ + 102.669128418000071, + 13.113098145000038 + ], + [ + 102.665893555000082, + 13.115478516000053 + ], + [ + 102.663085937000062, + 13.113525391000053 + ], + [ + 102.65850830100004, + 13.114501953000058 + ], + [ + 102.654907227000081, + 13.113891602000024 + ], + [ + 102.651489258000083, + 13.115905762000068 + ], + [ + 102.648315430000082, + 13.114685059000067 + ], + [ + 102.645080566000047, + 13.112487793000071 + ], + [ + 102.643310547000056, + 13.114685059000067 + ], + [ + 102.638916016000053, + 13.114074707000043 + ], + [ + 102.635925293000071, + 13.114685059000067 + ], + [ + 102.63311767600004, + 13.113708496000072 + ], + [ + 102.63507080100004, + 13.109924316000047 + ], + [ + 102.633728027000075, + 13.105285645000038 + ], + [ + 102.628723145000038, + 13.104492187000062 + ], + [ + 102.624877930000082, + 13.104309082000043 + ], + [ + 102.621887207000043, + 13.101684570000032 + ], + [ + 102.617675781000059, + 13.101684570000032 + ], + [ + 102.614318848000039, + 13.102294922000056 + ], + [ + 102.613891602000081, + 13.099304199000073 + ], + [ + 102.609924316000047, + 13.097473145000038 + ], + [ + 102.606323242000087, + 13.100524902000075 + ], + [ + 102.602722168000071, + 13.099304199000073 + ], + [ + 102.602111816000047, + 13.095275879000042 + ], + [ + 102.598083496000072, + 13.093872070000032 + ], + [ + 102.601074219000054, + 13.089904785000044 + ], + [ + 102.599121094000054, + 13.086486816000047 + ], + [ + 102.595520020000038, + 13.087280273000033 + ], + [ + 102.592285156000059, + 13.087524414000029 + ], + [ + 102.587524414000086, + 13.086486816000047 + ], + [ + 102.587280273000033, + 13.082092285000044 + ], + [ + 102.591918945000032, + 13.083496094000054 + ], + [ + 102.592529297000056, + 13.080688477000024 + ], + [ + 102.590087891000053, + 13.078125 + ], + [ + 102.588073730000076, + 13.075927734000061 + ], + [ + 102.584472656000059, + 13.074279785000044 + ], + [ + 102.579711914000086, + 13.073913574000073 + ], + [ + 102.577880859000061, + 13.069274902000075 + ], + [ + 102.577270508000083, + 13.065490723000039 + ], + [ + 102.573486328000058, + 13.062316895000038 + ], + [ + 102.574890137000068, + 13.058288574000073 + ], + [ + 102.577270508000083, + 13.060485840000069 + ], + [ + 102.579101562000062, + 13.057128906000059 + ], + [ + 102.579711914000086, + 13.053527832000043 + ], + [ + 102.581115723000039, + 13.049926758000026 + ], + [ + 102.583679199000073, + 13.048522949000073 + ], + [ + 102.582885742000087, + 13.045104980000076 + ], + [ + 102.582275391000053, + 13.041503906000059 + ], + [ + 102.583679199000073, + 13.038513184000067 + ], + [ + 102.584106445000032, + 13.035278320000032 + ], + [ + 102.581115723000039, + 13.033325195000032 + ], + [ + 102.580871582000043, + 13.030273437000062 + ], + [ + 102.585327148000033, + 13.028930664000029 + ], + [ + 102.582275391000053, + 13.024902344000054 + ], + [ + 102.585876465000069, + 13.023315430000025 + ], + [ + 102.583312988000046, + 13.019470215000069 + ], + [ + 102.584472656000059, + 13.015319824000073 + ], + [ + 102.580078125000057, + 13.014099121000072 + ], + [ + 102.579284668000071, + 13.008300781000059 + ], + [ + 102.576721191000047, + 13.005920410000044 + ], + [ + 102.575500488000046, + 13.002075195000032 + ], + [ + 102.572692871000072, + 12.999694824000073 + ], + [ + 102.5625, + 12.980712891000053 + ], + [ + 102.487304687000062, + 12.982482910000044 + ], + [ + 102.490112305000082, + 12.984313965000069 + ], + [ + 102.493286133000083, + 12.985290527000075 + ], + [ + 102.497497559000067, + 12.986694336000028 + ], + [ + 102.500671387000068, + 12.988525391000053 + ], + [ + 102.501525879000042, + 12.991699219000054 + ], + [ + 102.504089355000076, + 12.992919922000056 + ], + [ + 102.506713867000087, + 12.994079590000069 + ], + [ + 102.509277344000054, + 12.995910645000038 + ], + [ + 102.512695312000062, + 12.994506836000028 + ], + [ + 102.515075684000067, + 12.99249267600004 + ], + [ + 102.516906738000046, + 12.996093750000057 + ], + [ + 102.521728516000053, + 12.997924805000025 + ], + [ + 102.526123047000056, + 13.001098633000026 + ], + [ + 102.528930664000086, + 13.002502441000047 + ], + [ + 102.526123047000056, + 13.005126953000058 + ], + [ + 102.523315430000082, + 13.005676270000038 + ], + [ + 102.520324707000043, + 13.005676270000038 + ], + [ + 102.516906738000046, + 13.005676270000038 + ], + [ + 102.513916016000053, + 13.005676270000038 + ], + [ + 102.510498047000056, + 13.005676270000038 + ], + [ + 102.505920410000044, + 13.005920410000044 + ], + [ + 102.501525879000042, + 13.008728027000075 + ], + [ + 102.498291016000053, + 13.011108398000033 + ], + [ + 102.495117187000062, + 13.013305664000029 + ], + [ + 102.492675781000059, + 13.016906738000046 + ], + [ + 102.481872559000067, + 13.037902832000043 + ], + [ + 102.480895996000072, + 13.043090820000032 + ], + [ + 102.474304199000073, + 13.053100586000028 + ], + [ + 102.459106445000032, + 13.082519531000059 + ], + [ + 102.455871582000043, + 13.083129883000026 + ], + [ + 102.450317383000083, + 13.083679199000073 + ], + [ + 102.445922852000081, + 13.086303711000028 + ], + [ + 102.44171142600004, + 13.085327148000033 + ], + [ + 102.437072754000042, + 13.087707520000038 + ], + [ + 102.434692383000083, + 13.090087891000053 + ], + [ + 102.433288574000073, + 13.092895508000026 + ], + [ + 102.433105469000054, + 13.097290039000029 + ], + [ + 102.432678223000039, + 13.102111816000047 + ], + [ + 102.430480957000043, + 13.105285645000038 + ], + [ + 102.426696777000075, + 13.108093262000068 + ], + [ + 102.424072266000053, + 13.112304687000062 + ], + [ + 102.422729492000087, + 13.11608886700003 + ], + [ + 102.421081543000071, + 13.118713379000042 + ], + [ + 102.417724609000061, + 13.121887207000043 + ], + [ + 102.417114258000083, + 13.126098633000026 + ], + [ + 102.417480469000054, + 13.13171386700003 + ], + [ + 102.418090820000032, + 13.135681152000075 + ], + [ + 102.416870117000087, + 13.138671875000057 + ], + [ + 102.413330078000058, + 13.142272949000073 + ], + [ + 102.409729004000042, + 13.144714355000076 + ], + [ + 102.406311035000044, + 13.145080566000047 + ], + [ + 102.404907227000081, + 13.148315430000025 + ], + [ + 102.402099609000061, + 13.151306152000075 + ], + [ + 102.399902344000054, + 13.156127930000025 + ], + [ + 102.399108887000068, + 13.159912109000061 + ], + [ + 102.399108887000068, + 13.163085937000062 + ], + [ + 102.398315430000082, + 13.166076660000044 + ], + [ + 102.398315430000082, + 13.169921875000057 + ], + [ + 102.397705078000058, + 13.173095703000058 + ], + [ + 102.396118164000086, + 13.175720215000069 + ], + [ + 102.393493652000075, + 13.178100586000028 + ], + [ + 102.392700195000032, + 13.181884766000053 + ], + [ + 102.391906738000046, + 13.185302734000061 + ], + [ + 102.393676758000083, + 13.187927246000072 + ], + [ + 102.394104004000042, + 13.192321777000075 + ], + [ + 102.393310547000056, + 13.197509766000053 + ], + [ + 102.390502930000082, + 13.201721191000047 + ], + [ + 102.389099121000072, + 13.205505371000072 + ], + [ + 102.388916016000053, + 13.20928955100004 + ], + [ + 102.387084961000085, + 13.213684082000043 + ], + [ + 102.385925293000071, + 13.217895508000026 + ], + [ + 102.382873535000044, + 13.219726562000062 + ], + [ + 102.380676270000038, + 13.221496582000043 + ], + [ + 102.379272461000085, + 13.224121094000054 + ], + [ + 102.377929687000062, + 13.227905273000033 + ], + [ + 102.375671387000068, + 13.230895996000072 + ], + [ + 102.372070312000062, + 13.235290527000075 + ], + [ + 102.370300293000071, + 13.239501953000058 + ], + [ + 102.369506836000085, + 13.244689941000047 + ], + [ + 102.367919922000056, + 13.249694824000073 + ], + [ + 102.36749267600004, + 13.253112793000071 + ], + [ + 102.366516113000046, + 13.257324219000054 + ], + [ + 102.367126465000069, + 13.261718750000057 + ], + [ + 102.365112305000082, + 13.265319824000073 + ], + [ + 102.362304687000062, + 13.268493652000075 + ], + [ + 102.359497070000032, + 13.270080566000047 + ], + [ + 102.355529785000044, + 13.271728516000053 + ], + [ + 102.351501465000069, + 13.273315430000025 + ], + [ + 102.34991455100004, + 13.277526855000076 + ], + [ + 102.34991455100004, + 13.28210449200003 + ], + [ + 102.349487305000082, + 13.286926270000038 + ], + [ + 102.350097656000059, + 13.290710449000073 + ], + [ + 102.351318359000061, + 13.294494629000042 + ], + [ + 102.353271484000061, + 13.298278809000067 + ], + [ + 102.355712891000053, + 13.303100586000028 + ], + [ + 102.357482910000044, + 13.306518555000025 + ], + [ + 102.359130859000061, + 13.310729980000076 + ], + [ + 102.359313965000069, + 13.31530761700003 + ], + [ + 102.358093262000068, + 13.319885254000042 + ], + [ + 102.357116699000073, + 13.32452392600004 + ], + [ + 102.355285645000038, + 13.327697754000042 + ], + [ + 102.353515625000057, + 13.330078125000057 + ], + [ + 102.352111816000047, + 13.333496094000054 + ], + [ + 102.350891113000046, + 13.336914062000062 + ], + [ + 102.351928711000085, + 13.340270996000072 + ], + [ + 102.348693848000039, + 13.343505859000061 + ], + [ + 102.345275879000042, + 13.346313477000024 + ], + [ + 102.345886230000076, + 13.349304199000073 + ], + [ + 102.346679687000062, + 13.353271484000061 + ], + [ + 102.346923828000058, + 13.356872559000067 + ], + [ + 102.348693848000039, + 13.359924316000047 + ], + [ + 102.349121094000054, + 13.363281250000057 + ], + [ + 102.350097656000059, + 13.366699219000054 + ], + [ + 102.350891113000046, + 13.371276855000076 + ], + [ + 102.353271484000061, + 13.375671387000068 + ], + [ + 102.355712891000053, + 13.379516602000024 + ], + [ + 102.355712891000053, + 13.383483887000068 + ], + [ + 102.354919434000067, + 13.386718750000057 + ], + [ + 102.355712891000053, + 13.390075684000067 + ], + [ + 102.356689453000058, + 13.393676758000026 + ], + [ + 102.358276367000087, + 13.398315430000025 + ], + [ + 102.360107422000056, + 13.401916504000042 + ], + [ + 102.360473633000083, + 13.405090332000043 + ], + [ + 102.35968017600004, + 13.409729004000042 + ], + [ + 102.360290527000075, + 13.415527344000054 + ], + [ + 102.360473633000083, + 13.419677734000061 + ], + [ + 102.361694336000085, + 13.423522949000073 + ], + [ + 102.361083984000061, + 13.427673340000069 + ], + [ + 102.359924316000047, + 13.431091309000067 + ], + [ + 102.358520508000083, + 13.435302734000061 + ], + [ + 102.358703613000046, + 13.438720703000058 + ], + [ + 102.360107422000056, + 13.442687988000046 + ], + [ + 102.358703613000046, + 13.445922852000024 + ], + [ + 102.356079102000081, + 13.448913574000073 + ], + [ + 102.356079102000081, + 13.454101562000062 + ], + [ + 102.356506348000039, + 13.457519531000059 + ], + [ + 102.356079102000081, + 13.461486816000047 + ], + [ + 102.356689453000058, + 13.46710205100004 + ], + [ + 102.357482910000044, + 13.471496582000043 + ], + [ + 102.357299805000082, + 13.475708008000026 + ], + [ + 102.390502930000082, + 13.476501465000069 + ], + [ + 102.420288086000085, + 13.478515625000057 + ], + [ + 102.463684082000043, + 13.477111816000047 + ], + [ + 102.496520996000072, + 13.477478027000075 + ], + [ + 102.516723633000083, + 13.477722168000071 + ], + [ + 102.594726562000062, + 13.478515625000057 + ], + [ + 102.686889648000033, + 13.479492187000062 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 3.9332196871599998, + "Shape_Area": 0.37809336373000002, + "ADM1_EN": "Kampong Cham", + "ADM1_PCODE": "KH03", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105.722900391000053, + 12.501525879000042 + ], + [ + 105.726074219000054, + 12.501098633000026 + ], + [ + 105.729675293000071, + 12.501098633000026 + ], + [ + 105.733520508000083, + 12.501281738000046 + ], + [ + 105.734313965000069, + 12.497314453000058 + ], + [ + 105.734130859000061, + 12.492675781000059 + ], + [ + 105.734924316000047, + 12.489501953000058 + ], + [ + 105.736083984000061, + 12.485900879000042 + ], + [ + 105.737487793000071, + 12.481689453000058 + ], + [ + 105.738708496000072, + 12.477905273000033 + ], + [ + 105.739929199000073, + 12.474670410000044 + ], + [ + 105.742309570000089, + 12.471313477000024 + ], + [ + 105.744689941000047, + 12.468872070000032 + ], + [ + 105.747314453000058, + 12.46569824200003 + ], + [ + 105.748474121000072, + 12.462707520000038 + ], + [ + 105.749877930000082, + 12.459472656000059 + ], + [ + 105.751281738000046, + 12.455505371000072 + ], + [ + 105.752502441000047, + 12.45147705100004 + ], + [ + 105.753906250000057, + 12.44812011700003 + ], + [ + 105.755310059000067, + 12.443725586000028 + ], + [ + 105.756713867000087, + 12.439086914000029 + ], + [ + 105.75811767600004, + 12.434692383000026 + ], + [ + 105.759704590000069, + 12.429687500000057 + ], + [ + 105.760925293000071, + 12.426513672000056 + ], + [ + 105.761901855000076, + 12.423706055000025 + ], + [ + 105.762695312000062, + 12.418884277000075 + ], + [ + 105.764892578000058, + 12.413330078000058 + ], + [ + 105.76593017600004, + 12.409912109000061 + ], + [ + 105.767272949000073, + 12.405517578000058 + ], + [ + 105.768310547000056, + 12.401489258000026 + ], + [ + 105.769287109000061, + 12.396728516000053 + ], + [ + 105.770324707000043, + 12.39147949200003 + ], + [ + 105.771118164000086, + 12.386291504000042 + ], + [ + 105.771911621000072, + 12.381530762000068 + ], + [ + 105.772705078000058, + 12.376708984000061 + ], + [ + 105.773315430000082, + 12.373291016000053 + ], + [ + 105.773681641000053, + 12.369506836000028 + ], + [ + 105.774291992000087, + 12.365478516000053 + ], + [ + 105.774719238000046, + 12.361511230000076 + ], + [ + 105.774902344000054, + 12.35827636700003 + ], + [ + 105.775085449000073, + 12.354919434000067 + ], + [ + 105.775512695000089, + 12.351318359000061 + ], + [ + 105.77569580100004, + 12.345886230000076 + ], + [ + 105.775878906000059, + 12.342712402000075 + ], + [ + 105.775878906000059, + 12.339294434000067 + ], + [ + 105.775878906000059, + 12.336303711000028 + ], + [ + 105.774902344000054, + 12.331115723000039 + ], + [ + 105.774291992000087, + 12.327697754000042 + ], + [ + 105.773315430000082, + 12.323730469000054 + ], + [ + 105.772094727000081, + 12.320129395000038 + ], + [ + 105.770507812000062, + 12.315673828000058 + ], + [ + 105.767089844000054, + 12.313476562000062 + ], + [ + 105.763671875000057, + 12.311523437000062 + ], + [ + 105.759277344000054, + 12.312683105000076 + ], + [ + 105.755920410000044, + 12.309875488000046 + ], + [ + 105.753112793000071, + 12.305908203000058 + ], + [ + 105.749694824000073, + 12.304687500000057 + ], + [ + 105.746520996000072, + 12.303710937000062 + ], + [ + 105.74249267600004, + 12.301330566000047 + ], + [ + 105.741882324000073, + 12.298522949000073 + ], + [ + 105.744506836000085, + 12.294677734000061 + ], + [ + 105.745117187000062, + 12.291503906000059 + ], + [ + 105.745300293000071, + 12.288085937000062 + ], + [ + 105.740112305000082, + 12.286682129000042 + ], + [ + 105.736511230000076, + 12.285278320000032 + ], + [ + 105.733276367000087, + 12.282287598000039 + ], + [ + 105.728271484000061, + 12.279907227000024 + ], + [ + 105.725524902000075, + 12.279113770000038 + ], + [ + 105.721130371000072, + 12.277526855000076 + ], + [ + 105.704101562000062, + 12.279907227000024 + ], + [ + 105.698486328000058, + 12.281921387000068 + ], + [ + 105.685302734000061, + 12.285278320000032 + ], + [ + 105.681274414000086, + 12.286499023000033 + ], + [ + 105.649108887000068, + 12.286315918000071 + ], + [ + 105.641723633000083, + 12.288696289000029 + ], + [ + 105.637329102000081, + 12.292114258000026 + ], + [ + 105.634704590000069, + 12.29327392600004 + ], + [ + 105.621093750000057, + 12.298706055000025 + ], + [ + 105.610717773000033, + 12.300476074000073 + ], + [ + 105.587524414000086, + 12.298889160000044 + ], + [ + 105.583679199000073, + 12.297302246000072 + ], + [ + 105.580078125000057, + 12.295471191000047 + ], + [ + 105.57647705100004, + 12.292480469000054 + ], + [ + 105.570678711000085, + 12.28991699200003 + ], + [ + 105.565673828000058, + 12.286071777000075 + ], + [ + 105.562072754000042, + 12.282470703000058 + ], + [ + 105.559082031000059, + 12.279907227000024 + ], + [ + 105.556884766000053, + 12.277099609000061 + ], + [ + 105.554687500000057, + 12.27429199200003 + ], + [ + 105.551696777000075, + 12.269714355000076 + ], + [ + 105.549316406000059, + 12.26593017600004 + ], + [ + 105.547729492000087, + 12.262878418000071 + ], + [ + 105.546325684000067, + 12.259887695000032 + ], + [ + 105.544921875000057, + 12.256896973000039 + ], + [ + 105.543884277000075, + 12.253479004000042 + ], + [ + 105.542724609000061, + 12.249511719000054 + ], + [ + 105.541687012000068, + 12.246093750000057 + ], + [ + 105.540710449000073, + 12.241516113000046 + ], + [ + 105.539672852000081, + 12.237915039000029 + ], + [ + 105.538879395000038, + 12.234313965000069 + ], + [ + 105.537719727000081, + 12.229125977000024 + ], + [ + 105.536926270000038, + 12.223693848000039 + ], + [ + 105.536926270000038, + 12.218872070000032 + ], + [ + 105.536499023000033, + 12.214721680000025 + ], + [ + 105.535522461000085, + 12.211303711000028 + ], + [ + 105.535278320000089, + 12.206115723000039 + ], + [ + 105.535888672000056, + 12.201721191000047 + ], + [ + 105.536926270000038, + 12.197082520000038 + ], + [ + 105.538085937000062, + 12.192321777000075 + ], + [ + 105.538513184000067, + 12.188903809000067 + ], + [ + 105.538879395000038, + 12.185485840000069 + ], + [ + 105.539489746000072, + 12.181701660000044 + ], + [ + 105.541076660000044, + 12.178283691000047 + ], + [ + 105.539672852000081, + 12.174316406000059 + ], + [ + 105.538879395000038, + 12.169128418000071 + ], + [ + 105.536926270000038, + 12.164123535000044 + ], + [ + 105.536499023000033, + 12.159912109000061 + ], + [ + 105.536071777000075, + 12.156127930000025 + ], + [ + 105.535705566000047, + 12.152526855000076 + ], + [ + 105.535278320000089, + 12.147277832000043 + ], + [ + 105.534729004000042, + 12.14288330100004 + ], + [ + 105.534301758000083, + 12.139099121000072 + ], + [ + 105.534118652000075, + 12.134704590000069 + ], + [ + 105.534118652000075, + 12.131286621000072 + ], + [ + 105.533325195000089, + 12.127502441000047 + ], + [ + 105.532287598000039, + 12.122314453000058 + ], + [ + 105.531677246000072, + 12.118286133000026 + ], + [ + 105.529907227000081, + 12.115295410000044 + ], + [ + 105.530517578000058, + 12.110473633000026 + ], + [ + 105.530090332000043, + 12.105895996000072 + ], + [ + 105.530517578000058, + 12.101928711000028 + ], + [ + 105.532287598000039, + 12.097473145000038 + ], + [ + 105.533874512000068, + 12.093322754000042 + ], + [ + 105.534301758000083, + 12.089111328000058 + ], + [ + 105.535095215000069, + 12.086120605000076 + ], + [ + 105.536499023000033, + 12.082092285000044 + ], + [ + 105.537475586000085, + 12.079284668000071 + ], + [ + 105.539123535000044, + 12.076721191000047 + ], + [ + 105.540527344000054, + 12.073486328000058 + ], + [ + 105.542114258000083, + 12.070129395000038 + ], + [ + 105.544494629000042, + 12.06671142600004 + ], + [ + 105.546508789000086, + 12.062683105000076 + ], + [ + 105.547912598000039, + 12.059692383000026 + ], + [ + 105.548278809000067, + 12.056274414000029 + ], + [ + 105.547729492000087, + 12.053100586000028 + ], + [ + 105.546875, + 12.050109863000046 + ], + [ + 105.544494629000042, + 12.043884277000075 + ], + [ + 105.541687012000068, + 12.03991699200003 + ], + [ + 105.536926270000038, + 12.033874512000068 + ], + [ + 105.529479980000076, + 12.031311035000044 + ], + [ + 105.526306152000075, + 12.030883789000029 + ], + [ + 105.522705078000058, + 12.030700684000067 + ], + [ + 105.518493652000075, + 12.031677246000072 + ], + [ + 105.503723145000038, + 12.031921387000068 + ], + [ + 105.500671387000068, + 12.030883789000029 + ], + [ + 105.490722656000059, + 12.024719238000046 + ], + [ + 105.487121582000043, + 12.034912109000061 + ], + [ + 105.485717773000033, + 12.038696289000029 + ], + [ + 105.483093262000068, + 12.034912109000061 + ], + [ + 105.481079102000081, + 12.032287598000039 + ], + [ + 105.479675293000071, + 12.029724121000072 + ], + [ + 105.478515625000057, + 12.027099609000061 + ], + [ + 105.476318359000061, + 12.023681641000053 + ], + [ + 105.474670410000044, + 12.020874023000033 + ], + [ + 105.472900391000053, + 12.01788330100004 + ], + [ + 105.472290039000086, + 12.013305664000029 + ], + [ + 105.471496582000043, + 12.007690430000025 + ], + [ + 105.473083496000072, + 12.003479004000042 + ], + [ + 105.471496582000043, + 12.001098633000026 + ], + [ + 105.471313477000081, + 11.997314453000058 + ], + [ + 105.471130371000072, + 11.993286133000026 + ], + [ + 105.470886230000076, + 11.989074707000043 + ], + [ + 105.471130371000072, + 11.984313965000069 + ], + [ + 105.470520020000038, + 11.978881836000028 + ], + [ + 105.470520020000038, + 11.971496582000043 + ], + [ + 105.470275879000042, + 11.964294434000067 + ], + [ + 105.470275879000042, + 11.95788574200003 + ], + [ + 105.470275879000042, + 11.952087402000075 + ], + [ + 105.469299316000047, + 11.946472168000071 + ], + [ + 105.468322754000042, + 11.941284180000025 + ], + [ + 105.466674805000082, + 11.935485840000069 + ], + [ + 105.463684082000043, + 11.926879883000026 + ], + [ + 105.459472656000059, + 11.918884277000075 + ], + [ + 105.454895020000038, + 11.913696289000029 + ], + [ + 105.457092285000044, + 11.911499023000033 + ], + [ + 105.460083008000083, + 11.907897949000073 + ], + [ + 105.463684082000043, + 11.904296875000057 + ], + [ + 105.466918945000089, + 11.900878906000059 + ], + [ + 105.463684082000043, + 11.898071289000029 + ], + [ + 105.459106445000089, + 11.893920898000033 + ], + [ + 105.455871582000043, + 11.891906738000046 + ], + [ + 105.453491211000085, + 11.890319824000073 + ], + [ + 105.453674316000047, + 11.885925293000071 + ], + [ + 105.453674316000047, + 11.881530762000068 + ], + [ + 105.453491211000085, + 11.876281738000046 + ], + [ + 105.451904297000056, + 11.872680664000029 + ], + [ + 105.451110840000069, + 11.869506836000028 + ], + [ + 105.449890137000068, + 11.865295410000044 + ], + [ + 105.450073242000087, + 11.861511230000076 + ], + [ + 105.449096680000082, + 11.853088379000042 + ], + [ + 105.448303223000039, + 11.847717285000044 + ], + [ + 105.447692871000072, + 11.843322754000042 + ], + [ + 105.447082520000038, + 11.839477539000029 + ], + [ + 105.446899414000086, + 11.836303711000028 + ], + [ + 105.444274902000075, + 11.833496094000054 + ], + [ + 105.441528320000089, + 11.832702637000068 + ], + [ + 105.438110352000081, + 11.832092285000044 + ], + [ + 105.433105469000054, + 11.831115723000039 + ], + [ + 105.428100586000085, + 11.830078125000057 + ], + [ + 105.424926758000083, + 11.829284668000071 + ], + [ + 105.422119141000053, + 11.828674316000047 + ], + [ + 105.418701172000056, + 11.827697754000042 + ], + [ + 105.415893555000082, + 11.828491211000028 + ], + [ + 105.415283203000058, + 11.831298828000058 + ], + [ + 105.411682129000042, + 11.833312988000046 + ], + [ + 105.409912109000061, + 11.835693359000061 + ], + [ + 105.409301758000083, + 11.840087891000053 + ], + [ + 105.404907227000081, + 11.841674805000025 + ], + [ + 105.405090332000043, + 11.844909668000071 + ], + [ + 105.401306152000075, + 11.846496582000043 + ], + [ + 105.398681641000053, + 11.843688965000069 + ], + [ + 105.396484375000057, + 11.841918945000032 + ], + [ + 105.394287109000061, + 11.840087891000053 + ], + [ + 105.391296387000068, + 11.838684082000043 + ], + [ + 105.389282227000081, + 11.841308594000054 + ], + [ + 105.385314941000047, + 11.842712402000075 + ], + [ + 105.381103516000053, + 11.844726562000062 + ], + [ + 105.377075195000089, + 11.844726562000062 + ], + [ + 105.373718262000068, + 11.844299316000047 + ], + [ + 105.372924805000082, + 11.849121094000054 + ], + [ + 105.369873047000056, + 11.850891113000046 + ], + [ + 105.367126465000069, + 11.852111816000047 + ], + [ + 105.365295410000044, + 11.855102539000029 + ], + [ + 105.362121582000043, + 11.856506348000039 + ], + [ + 105.358276367000087, + 11.854919434000067 + ], + [ + 105.354492187000062, + 11.852905273000033 + ], + [ + 105.350280762000068, + 11.852111816000047 + ], + [ + 105.347290039000086, + 11.854309082000043 + ], + [ + 105.343505859000061, + 11.853881836000028 + ], + [ + 105.339294434000067, + 11.855895996000072 + ], + [ + 105.337524414000086, + 11.859313965000069 + ], + [ + 105.335083008000083, + 11.862915039000029 + ], + [ + 105.331481934000067, + 11.864685059000067 + ], + [ + 105.329711914000086, + 11.867919922000056 + ], + [ + 105.32647705100004, + 11.870117187000062 + ], + [ + 105.324279785000044, + 11.866516113000046 + ], + [ + 105.322082520000038, + 11.864074707000043 + ], + [ + 105.318725586000085, + 11.864685059000067 + ], + [ + 105.314697266000053, + 11.864318848000039 + ], + [ + 105.310913086000085, + 11.861694336000028 + ], + [ + 105.306518555000082, + 11.860717773000033 + ], + [ + 105.302917480000076, + 11.859924316000047 + ], + [ + 105.299499512000068, + 11.858703613000046 + ], + [ + 105.295471191000047, + 11.859130859000061 + ], + [ + 105.292114258000083, + 11.856689453000058 + ], + [ + 105.288513184000067, + 11.855895996000072 + ], + [ + 105.284301758000083, + 11.857116699000073 + ], + [ + 105.285522461000085, + 11.853515625000057 + ], + [ + 105.288513184000067, + 11.850891113000046 + ], + [ + 105.287109375000057, + 11.846130371000072 + ], + [ + 105.28350830100004, + 11.846313477000024 + ], + [ + 105.279296875000057, + 11.847473145000038 + ], + [ + 105.277282715000069, + 11.843872070000032 + ], + [ + 105.27569580100004, + 11.841125488000046 + ], + [ + 105.271484375000057, + 11.840881348000039 + ], + [ + 105.268127441000047, + 11.842529297000056 + ], + [ + 105.267272949000073, + 11.839721680000025 + ], + [ + 105.266113281000059, + 11.836120605000076 + ], + [ + 105.262878418000071, + 11.832702637000068 + ], + [ + 105.261718750000057, + 11.828674316000047 + ], + [ + 105.26007080100004, + 11.824707031000059 + ], + [ + 105.25811767600004, + 11.822326660000044 + ], + [ + 105.256530762000068, + 11.819091797000056 + ], + [ + 105.254699707000043, + 11.815673828000058 + ], + [ + 105.253723145000038, + 11.812683105000076 + ], + [ + 105.250915527000075, + 11.812072754000042 + ], + [ + 105.247314453000058, + 11.813903809000067 + ], + [ + 105.244873047000056, + 11.810119629000042 + ], + [ + 105.244079590000069, + 11.806884766000053 + ], + [ + 105.241882324000073, + 11.804870605000076 + ], + [ + 105.239074707000043, + 11.802673340000069 + ], + [ + 105.235717773000033, + 11.801330566000047 + ], + [ + 105.233093262000068, + 11.79968261700003 + ], + [ + 105.228881836000085, + 11.797912598000039 + ], + [ + 105.223510742000087, + 11.798522949000073 + ], + [ + 105.220092773000033, + 11.795471191000047 + ], + [ + 105.21710205100004, + 11.791076660000044 + ], + [ + 105.212280273000033, + 11.790527344000054 + ], + [ + 105.209106445000089, + 11.786682129000042 + ], + [ + 105.204284668000071, + 11.784484863000046 + ], + [ + 105.200500488000046, + 11.783874512000068 + ], + [ + 105.196716309000067, + 11.783081055000025 + ], + [ + 105.193298340000069, + 11.780273437000062 + ], + [ + 105.191528320000089, + 11.777282715000069 + ], + [ + 105.189086914000086, + 11.773925781000059 + ], + [ + 105.185913086000085, + 11.770874023000033 + ], + [ + 105.182128906000059, + 11.768310547000056 + ], + [ + 105.177917480000076, + 11.768310547000056 + ], + [ + 105.174072266000053, + 11.768127441000047 + ], + [ + 105.171081543000071, + 11.764709473000039 + ], + [ + 105.167907715000069, + 11.762512207000043 + ], + [ + 105.164672852000081, + 11.761901855000076 + ], + [ + 105.160705566000047, + 11.762512207000043 + ], + [ + 105.157104492000087, + 11.759704590000069 + ], + [ + 105.159118652000075, + 11.755493164000029 + ], + [ + 105.162475586000085, + 11.751892090000069 + ], + [ + 105.164489746000072, + 11.746704102000024 + ], + [ + 105.163879395000038, + 11.74249267600004 + ], + [ + 105.160888672000056, + 11.739318848000039 + ], + [ + 105.159301758000083, + 11.735473633000026 + ], + [ + 105.155883789000086, + 11.734924316000047 + ], + [ + 105.151916504000042, + 11.734497070000032 + ], + [ + 105.147094727000081, + 11.734497070000032 + ], + [ + 105.143127441000047, + 11.734924316000047 + ], + [ + 105.138671875000057, + 11.736511230000076 + ], + [ + 105.134887695000089, + 11.738098145000038 + ], + [ + 105.130920410000044, + 11.739685059000067 + ], + [ + 105.126525879000042, + 11.741271973000039 + ], + [ + 105.121093750000057, + 11.741882324000073 + ], + [ + 105.117675781000059, + 11.741516113000046 + ], + [ + 105.114929199000073, + 11.740478516000053 + ], + [ + 105.111877441000047, + 11.738891602000024 + ], + [ + 105.108703613000046, + 11.736083984000061 + ], + [ + 105.106079102000081, + 11.73468017600004 + ], + [ + 105.101318359000061, + 11.73468017600004 + ], + [ + 105.096679687000062, + 11.736694336000028 + ], + [ + 105.094482422000056, + 11.739685059000067 + ], + [ + 105.093078613000046, + 11.742309570000032 + ], + [ + 105.091125488000046, + 11.746276855000076 + ], + [ + 105.088073730000076, + 11.750122070000032 + ], + [ + 105.083496094000054, + 11.750915527000075 + ], + [ + 105.078308105000076, + 11.751098633000026 + ], + [ + 105.07452392600004, + 11.751098633000026 + ], + [ + 105.071105957000043, + 11.751098633000026 + ], + [ + 105.066528320000089, + 11.751098633000026 + ], + [ + 105.061279297000056, + 11.751098633000026 + ], + [ + 105.057495117000087, + 11.751098633000026 + ], + [ + 105.052490234000061, + 11.751281738000046 + ], + [ + 105.048095703000058, + 11.752075195000032 + ], + [ + 105.048889160000044, + 11.755676270000038 + ], + [ + 105.048706055000082, + 11.759277344000054 + ], + [ + 105.048522949000073, + 11.762878418000071 + ], + [ + 105.048889160000044, + 11.767517090000069 + ], + [ + 105.047729492000087, + 11.772094727000024 + ], + [ + 105.047119141000053, + 11.776123047000056 + ], + [ + 105.048522949000073, + 11.779113770000038 + ], + [ + 105.049316406000059, + 11.784729004000042 + ], + [ + 105.050476074000073, + 11.789123535000044 + ], + [ + 105.050720215000069, + 11.793090820000032 + ], + [ + 105.052124023000033, + 11.797119141000053 + ], + [ + 105.052917480000076, + 11.80108642600004 + ], + [ + 105.055908203000058, + 11.802917480000076 + ], + [ + 105.059509277000075, + 11.802307129000042 + ], + [ + 105.062683105000076, + 11.805908203000058 + ], + [ + 105.067077637000068, + 11.808715820000032 + ], + [ + 105.066894531000059, + 11.812316895000038 + ], + [ + 105.065490723000039, + 11.815917969000054 + ], + [ + 105.063476562000062, + 11.818725586000028 + ], + [ + 105.059692383000083, + 11.821472168000071 + ], + [ + 105.057312012000068, + 11.824279785000044 + ], + [ + 105.054870605000076, + 11.82647705100004 + ], + [ + 105.052673340000069, + 11.828308105000076 + ], + [ + 105.048522949000073, + 11.832519531000059 + ], + [ + 105.045715332000043, + 11.836486816000047 + ], + [ + 105.042907715000069, + 11.841125488000046 + ], + [ + 105.041076660000044, + 11.844116211000028 + ], + [ + 105.039672852000081, + 11.847473145000038 + ], + [ + 105.038330078000058, + 11.850280762000068 + ], + [ + 105.032897949000073, + 11.850891113000046 + ], + [ + 105.029113770000038, + 11.851684570000032 + ], + [ + 105.022521973000039, + 11.852294922000056 + ], + [ + 105.018493652000075, + 11.852294922000056 + ], + [ + 105.013916016000053, + 11.852722168000071 + ], + [ + 105.009277344000054, + 11.853515625000057 + ], + [ + 105.005493164000086, + 11.854492187000062 + ], + [ + 105.004089355000076, + 11.858886719000054 + ], + [ + 105.001892090000069, + 11.861694336000028 + ], + [ + 105.00030517600004, + 11.864074707000043 + ], + [ + 104.998901367000087, + 11.867126465000069 + ], + [ + 104.998291016000053, + 11.870727539000029 + ], + [ + 104.996093750000057, + 11.874084473000039 + ], + [ + 104.993713379000042, + 11.877502441000047 + ], + [ + 104.990722656000059, + 11.879882812000062 + ], + [ + 104.987121582000043, + 11.881896973000039 + ], + [ + 104.985290527000075, + 11.877929687000062 + ], + [ + 104.983093262000068, + 11.874877930000025 + ], + [ + 104.980712891000053, + 11.871887207000043 + ], + [ + 104.978088379000042, + 11.868530273000033 + ], + [ + 104.975708008000083, + 11.865478516000053 + ], + [ + 104.971923828000058, + 11.861877441000047 + ], + [ + 104.96710205100004, + 11.85968017600004 + ], + [ + 104.964111328000058, + 11.856872559000067 + ], + [ + 104.959716797000056, + 11.861877441000047 + ], + [ + 104.958679199000073, + 11.864685059000067 + ], + [ + 104.957885742000087, + 11.868286133000026 + ], + [ + 104.957519531000059, + 11.871520996000072 + ], + [ + 104.955688477000081, + 11.874694824000073 + ], + [ + 104.953674316000047, + 11.870117187000062 + ], + [ + 104.953918457000043, + 11.864929199000073 + ], + [ + 104.952087402000075, + 11.862487793000071 + ], + [ + 104.949096680000082, + 11.859924316000047 + ], + [ + 104.946716309000067, + 11.855895996000072 + ], + [ + 104.944885254000042, + 11.852294922000056 + ], + [ + 104.945495605000076, + 11.848083496000072 + ], + [ + 104.944274902000075, + 11.845092773000033 + ], + [ + 104.941894531000059, + 11.841918945000032 + ], + [ + 104.940917969000054, + 11.837707520000038 + ], + [ + 104.939514160000044, + 11.83428955100004 + ], + [ + 104.935729980000076, + 11.832702637000068 + ], + [ + 104.932312012000068, + 11.831115723000039 + ], + [ + 104.930480957000043, + 11.826904297000056 + ], + [ + 104.927917480000076, + 11.823486328000058 + ], + [ + 104.924682617000087, + 11.821289062000062 + ], + [ + 104.921691895000038, + 11.818725586000028 + ], + [ + 104.920898437000062, + 11.815490723000039 + ], + [ + 104.920288086000085, + 11.811279297000056 + ], + [ + 104.918090820000089, + 11.809326172000056 + ], + [ + 104.914672852000081, + 11.808715820000032 + ], + [ + 104.910888672000056, + 11.807922363000046 + ], + [ + 104.907287598000039, + 11.807922363000046 + ], + [ + 104.903503418000071, + 11.809082031000059 + ], + [ + 104.901672363000046, + 11.812927246000072 + ], + [ + 104.899475098000039, + 11.815917969000054 + ], + [ + 104.895874023000033, + 11.818115234000061 + ], + [ + 104.893310547000056, + 11.819885254000042 + ], + [ + 104.890686035000044, + 11.822326660000044 + ], + [ + 104.887512207000043, + 11.822509766000053 + ], + [ + 104.884094238000046, + 11.823730469000054 + ], + [ + 104.881896973000039, + 11.820129395000038 + ], + [ + 104.877929687000062, + 11.818908691000047 + ], + [ + 104.873718262000068, + 11.820678711000028 + ], + [ + 104.869323730000076, + 11.823303223000039 + ], + [ + 104.866271973000039, + 11.827514648000033 + ], + [ + 104.861694336000085, + 11.828125 + ], + [ + 104.858276367000087, + 11.831481934000067 + ], + [ + 104.853698730000076, + 11.833129883000026 + ], + [ + 104.852111816000047, + 11.830505371000072 + ], + [ + 104.851928711000085, + 11.826904297000056 + ], + [ + 104.846313477000081, + 11.824707031000059 + ], + [ + 104.839904785000044, + 11.823730469000054 + ], + [ + 104.83428955100004, + 11.824279785000044 + ], + [ + 104.830871582000043, + 11.826721191000047 + ], + [ + 104.832519531000059, + 11.829711914000029 + ], + [ + 104.832519531000059, + 11.833496094000054 + ], + [ + 104.833496094000054, + 11.837280273000033 + ], + [ + 104.831481934000067, + 11.840087891000053 + ], + [ + 104.831481934000067, + 11.843078613000046 + ], + [ + 104.831909180000082, + 11.846130371000072 + ], + [ + 104.833496094000054, + 11.84991455100004 + ], + [ + 104.833923340000069, + 11.853088379000042 + ], + [ + 104.835083008000083, + 11.858093262000068 + ], + [ + 104.835876465000069, + 11.862121582000043 + ], + [ + 104.836486816000047, + 11.865478516000053 + ], + [ + 104.836914062000062, + 11.868530273000033 + ], + [ + 104.834472656000059, + 11.871887207000043 + ], + [ + 104.831909180000082, + 11.874084473000039 + ], + [ + 104.829895020000038, + 11.877929687000062 + ], + [ + 104.827697754000042, + 11.880676270000038 + ], + [ + 104.825073242000087, + 11.882873535000044 + ], + [ + 104.822875977000081, + 11.88507080100004 + ], + [ + 104.821105957000043, + 11.888122559000067 + ], + [ + 104.821289062000062, + 11.892517090000069 + ], + [ + 104.819885254000042, + 11.896911621000072 + ], + [ + 104.821105957000043, + 11.90069580100004 + ], + [ + 104.823120117000087, + 11.903076172000056 + ], + [ + 104.826293945000089, + 11.90850830100004 + ], + [ + 104.827880859000061, + 11.913696289000029 + ], + [ + 104.828308105000076, + 11.91687011700003 + ], + [ + 104.828308105000076, + 11.921081543000071 + ], + [ + 104.828308105000076, + 11.924499512000068 + ], + [ + 104.828308105000076, + 11.929321289000029 + ], + [ + 104.828674316000047, + 11.933288574000073 + ], + [ + 104.829284668000071, + 11.937316895000038 + ], + [ + 104.831298828000058, + 11.942871094000054 + ], + [ + 104.833129883000083, + 11.945678711000028 + ], + [ + 104.836914062000062, + 11.946472168000071 + ], + [ + 104.841125488000046, + 11.947509766000053 + ], + [ + 104.845275879000042, + 11.951110840000069 + ], + [ + 104.847900391000053, + 11.956298828000058 + ], + [ + 104.849121094000054, + 11.960510254000042 + ], + [ + 104.850097656000059, + 11.963317871000072 + ], + [ + 104.851074219000054, + 11.966125488000046 + ], + [ + 104.851684570000089, + 11.970092773000033 + ], + [ + 104.852722168000071, + 11.973327637000068 + ], + [ + 104.854919434000067, + 11.975708008000026 + ], + [ + 104.857910156000059, + 11.978271484000061 + ], + [ + 104.859924316000047, + 11.982482910000044 + ], + [ + 104.863281250000057, + 11.983886719000054 + ], + [ + 104.867675781000059, + 11.985290527000075 + ], + [ + 104.869689941000047, + 11.987670898000033 + ], + [ + 104.872924805000082, + 11.988891602000024 + ], + [ + 104.875488281000059, + 11.990112305000025 + ], + [ + 104.878479004000042, + 11.990112305000025 + ], + [ + 104.877929687000062, + 11.987304687000062 + ], + [ + 104.881103516000053, + 11.988708496000072 + ], + [ + 104.884277344000054, + 11.987670898000033 + ], + [ + 104.885925293000071, + 11.990905762000068 + ], + [ + 104.888488770000038, + 11.994323730000076 + ], + [ + 104.888916016000053, + 11.998718262000068 + ], + [ + 104.888671875000057, + 12.002685547000056 + ], + [ + 104.889099121000072, + 12.006103516000053 + ], + [ + 104.888671875000057, + 12.010681152000075 + ], + [ + 104.892517090000069, + 12.012695312000062 + ], + [ + 104.893920898000033, + 12.015319824000073 + ], + [ + 104.894287109000061, + 12.018676758000026 + ], + [ + 104.892272949000073, + 12.022277832000043 + ], + [ + 104.890686035000044, + 12.025512695000032 + ], + [ + 104.889282227000081, + 12.028686523000033 + ], + [ + 104.887695312000062, + 12.032287598000039 + ], + [ + 104.889099121000072, + 12.035888672000056 + ], + [ + 104.892700195000089, + 12.040527344000054 + ], + [ + 104.891906738000046, + 12.044921875000057 + ], + [ + 104.889892578000058, + 12.048889160000044 + ], + [ + 104.890319824000073, + 12.053710937000062 + ], + [ + 104.889099121000072, + 12.056884766000053 + ], + [ + 104.888122559000067, + 12.060485840000069 + ], + [ + 104.884521484000061, + 12.065673828000058 + ], + [ + 104.881896973000039, + 12.071289062000062 + ], + [ + 104.877685547000056, + 12.074096680000025 + ], + [ + 104.872680664000086, + 12.072875977000024 + ], + [ + 104.868530273000033, + 12.073303223000039 + ], + [ + 104.877685547000056, + 12.097290039000029 + ], + [ + 104.882324219000054, + 12.110473633000026 + ], + [ + 104.882873535000044, + 12.116271973000039 + ], + [ + 104.886108398000033, + 12.121520996000072 + ], + [ + 104.885681152000075, + 12.130676270000038 + ], + [ + 104.886108398000033, + 12.134704590000069 + ], + [ + 104.887878418000071, + 12.138671875000057 + ], + [ + 104.889892578000058, + 12.143127441000047 + ], + [ + 104.891906738000046, + 12.146301270000038 + ], + [ + 104.894287109000061, + 12.149475098000039 + ], + [ + 104.897094727000081, + 12.152893066000047 + ], + [ + 104.899902344000054, + 12.155517578000058 + ], + [ + 104.901916504000042, + 12.159118652000075 + ], + [ + 104.901672363000046, + 12.163330078000058 + ], + [ + 104.901489258000083, + 12.166687012000068 + ], + [ + 104.901672363000046, + 12.171508789000029 + ], + [ + 104.901916504000042, + 12.17608642600004 + ], + [ + 104.901916504000042, + 12.180725098000039 + ], + [ + 104.901489258000083, + 12.184326172000056 + ], + [ + 104.901306152000075, + 12.189270020000038 + ], + [ + 104.90069580100004, + 12.193481445000032 + ], + [ + 104.900329590000069, + 12.196716309000067 + ], + [ + 104.900329590000069, + 12.200683594000054 + ], + [ + 104.899719238000046, + 12.204711914000029 + ], + [ + 104.897521973000039, + 12.208312988000046 + ], + [ + 104.893676758000083, + 12.208679199000073 + ], + [ + 104.890502930000082, + 12.207519531000059 + ], + [ + 104.886291504000042, + 12.206298828000058 + ], + [ + 104.882690430000082, + 12.20928955100004 + ], + [ + 104.883911133000083, + 12.214111328000058 + ], + [ + 104.885314941000047, + 12.218505859000061 + ], + [ + 104.888305664000086, + 12.220275879000042 + ], + [ + 104.887329102000081, + 12.223876953000058 + ], + [ + 104.883911133000083, + 12.225280762000068 + ], + [ + 104.880920410000044, + 12.226318359000061 + ], + [ + 104.877319336000085, + 12.228515625000057 + ], + [ + 104.874511719000054, + 12.232482910000044 + ], + [ + 104.872680664000086, + 12.238098145000038 + ], + [ + 104.876525879000042, + 12.238098145000038 + ], + [ + 104.880676270000038, + 12.237304687000062 + ], + [ + 104.883483887000068, + 12.238098145000038 + ], + [ + 104.886108398000033, + 12.239318848000039 + ], + [ + 104.889099121000072, + 12.240478516000053 + ], + [ + 104.893127441000047, + 12.242675781000059 + ], + [ + 104.897521973000039, + 12.244506836000028 + ], + [ + 104.901672363000046, + 12.246520996000072 + ], + [ + 104.902099609000061, + 12.251708984000061 + ], + [ + 104.904113770000038, + 12.254516602000024 + ], + [ + 104.905883789000086, + 12.256896973000039 + ], + [ + 104.908874512000068, + 12.257080078000058 + ], + [ + 104.912109375000057, + 12.258483887000068 + ], + [ + 104.91632080100004, + 12.258300781000059 + ], + [ + 104.918518066000047, + 12.262329102000024 + ], + [ + 104.922729492000087, + 12.262084961000028 + ], + [ + 104.927917480000076, + 12.261108398000033 + ], + [ + 104.930908203000058, + 12.258728027000075 + ], + [ + 104.934326172000056, + 12.259094238000046 + ], + [ + 104.937927246000072, + 12.260498047000056 + ], + [ + 104.942077637000068, + 12.260498047000056 + ], + [ + 104.946105957000043, + 12.259277344000054 + ], + [ + 104.948120117000087, + 12.261718750000057 + ], + [ + 104.95147705100004, + 12.260681152000075 + ], + [ + 104.955871582000043, + 12.259521484000061 + ], + [ + 104.95928955100004, + 12.257873535000044 + ], + [ + 104.962890625000057, + 12.25811767600004 + ], + [ + 104.962097168000071, + 12.262329102000024 + ], + [ + 104.963500977000081, + 12.265319824000073 + ], + [ + 104.967712402000075, + 12.266723633000026 + ], + [ + 104.971923828000058, + 12.263916016000053 + ], + [ + 104.975280762000068, + 12.260314941000047 + ], + [ + 104.978271484000061, + 12.258300781000059 + ], + [ + 104.981872559000067, + 12.255493164000029 + ], + [ + 104.984130859000061, + 12.250488281000059 + ], + [ + 104.986083984000061, + 12.247070312000062 + ], + [ + 104.987121582000043, + 12.243286133000026 + ], + [ + 104.990478516000053, + 12.240295410000044 + ], + [ + 104.993530273000033, + 12.239318848000039 + ], + [ + 104.996276855000076, + 12.236694336000028 + ], + [ + 104.999328613000046, + 12.232482910000044 + ], + [ + 105.002319336000085, + 12.230712891000053 + ], + [ + 105.004699707000043, + 12.228088379000042 + ], + [ + 105.007507324000073, + 12.225097656000059 + ], + [ + 105.009094238000046, + 12.222473145000038 + ], + [ + 105.012084961000085, + 12.220520020000038 + ], + [ + 105.015502930000082, + 12.222717285000044 + ], + [ + 105.018310547000056, + 12.220520020000038 + ], + [ + 105.022094727000081, + 12.218505859000061 + ], + [ + 105.026306152000075, + 12.220520020000038 + ], + [ + 105.030517578000058, + 12.221923828000058 + ], + [ + 105.035095215000069, + 12.222473145000038 + ], + [ + 105.039306641000053, + 12.222717285000044 + ], + [ + 105.042480469000054, + 12.223693848000039 + ], + [ + 105.046691895000038, + 12.224304199000073 + ], + [ + 105.049682617000087, + 12.225280762000068 + ], + [ + 105.053527832000043, + 12.225891113000046 + ], + [ + 105.057128906000059, + 12.226074219000054 + ], + [ + 105.061889648000033, + 12.226074219000054 + ], + [ + 105.066101074000073, + 12.224670410000044 + ], + [ + 105.071289062000062, + 12.223083496000072 + ], + [ + 105.075927734000061, + 12.223083496000072 + ], + [ + 105.079711914000086, + 12.223083496000072 + ], + [ + 105.082519531000059, + 12.221923828000058 + ], + [ + 105.086486816000047, + 12.223327637000068 + ], + [ + 105.090087891000053, + 12.222717285000044 + ], + [ + 105.095703125000057, + 12.221923828000058 + ], + [ + 105.09991455100004, + 12.222106934000067 + ], + [ + 105.101501465000069, + 12.219482422000056 + ], + [ + 105.101074219000054, + 12.215270996000072 + ], + [ + 105.101074219000054, + 12.212280273000033 + ], + [ + 105.100524902000075, + 12.209472656000059 + ], + [ + 105.101684570000089, + 12.205688477000024 + ], + [ + 105.105285645000038, + 12.204528809000067 + ], + [ + 105.108886719000054, + 12.204528809000067 + ], + [ + 105.112670898000033, + 12.204101562000062 + ], + [ + 105.117126465000069, + 12.206298828000058 + ], + [ + 105.122070312000062, + 12.207092285000044 + ], + [ + 105.126098633000083, + 12.209106445000032 + ], + [ + 105.127319336000085, + 12.213073730000076 + ], + [ + 105.130493164000086, + 12.216125488000046 + ], + [ + 105.132873535000044, + 12.218322754000042 + ], + [ + 105.136291504000042, + 12.219909668000071 + ], + [ + 105.14093017600004, + 12.219299316000047 + ], + [ + 105.144470215000069, + 12.219909668000071 + ], + [ + 105.150085449000073, + 12.218078613000046 + ], + [ + 105.152893066000047, + 12.214904785000044 + ], + [ + 105.154724121000072, + 12.212280273000033 + ], + [ + 105.159118652000075, + 12.212280273000033 + ], + [ + 105.163879395000038, + 12.210693359000061 + ], + [ + 105.164672852000081, + 12.206298828000058 + ], + [ + 105.165527344000054, + 12.203125 + ], + [ + 105.168090820000089, + 12.201110840000069 + ], + [ + 105.170288086000085, + 12.197875977000024 + ], + [ + 105.173889160000044, + 12.195312500000057 + ], + [ + 105.177673340000069, + 12.195495605000076 + ], + [ + 105.181091309000067, + 12.196472168000071 + ], + [ + 105.185729980000076, + 12.195495605000076 + ], + [ + 105.189086914000086, + 12.192321777000075 + ], + [ + 105.193298340000069, + 12.190124512000068 + ], + [ + 105.195922852000081, + 12.193298340000069 + ], + [ + 105.198120117000087, + 12.196716309000067 + ], + [ + 105.201904297000056, + 12.199707031000059 + ], + [ + 105.201293945000089, + 12.203674316000047 + ], + [ + 105.200317383000083, + 12.207092285000044 + ], + [ + 105.199096680000082, + 12.211730957000043 + ], + [ + 105.197326660000044, + 12.215087891000053 + ], + [ + 105.196289062000062, + 12.218322754000042 + ], + [ + 105.195312500000057, + 12.222290039000029 + ], + [ + 105.194091797000056, + 12.225708008000026 + ], + [ + 105.192871094000054, + 12.229919434000067 + ], + [ + 105.191284180000082, + 12.235107422000056 + ], + [ + 105.190673828000058, + 12.238098145000038 + ], + [ + 105.190124512000068, + 12.241516113000046 + ], + [ + 105.190124512000068, + 12.245300293000071 + ], + [ + 105.190490723000039, + 12.25030517600004 + ], + [ + 105.195678711000085, + 12.262878418000071 + ], + [ + 105.194519043000071, + 12.26593017600004 + ], + [ + 105.191894531000059, + 12.268493652000075 + ], + [ + 105.189514160000044, + 12.270324707000043 + ], + [ + 105.182495117000087, + 12.274902344000054 + ], + [ + 105.179504395000038, + 12.278930664000029 + ], + [ + 105.175109863000046, + 12.281677246000072 + ], + [ + 105.172485352000081, + 12.284729004000042 + ], + [ + 105.168701172000056, + 12.295104980000076 + ], + [ + 105.167480469000054, + 12.299499512000068 + ], + [ + 105.168701172000056, + 12.303710937000062 + ], + [ + 105.169677734000061, + 12.307678223000039 + ], + [ + 105.167724609000061, + 12.310913086000028 + ], + [ + 105.165527344000054, + 12.314086914000029 + ], + [ + 105.165527344000054, + 12.319091797000056 + ], + [ + 105.167114258000083, + 12.325927734000061 + ], + [ + 105.169311523000033, + 12.329528809000067 + ], + [ + 105.165710449000073, + 12.330322266000053 + ], + [ + 105.160888672000056, + 12.331298828000058 + ], + [ + 105.156127930000082, + 12.332702637000068 + ], + [ + 105.152709961000085, + 12.334472656000059 + ], + [ + 105.149475098000039, + 12.337524414000029 + ], + [ + 105.148315430000082, + 12.340881348000039 + ], + [ + 105.147705078000058, + 12.345520020000038 + ], + [ + 105.144897461000085, + 12.348693848000039 + ], + [ + 105.141906738000046, + 12.351684570000032 + ], + [ + 105.140075684000067, + 12.353881836000028 + ], + [ + 105.137084961000085, + 12.356689453000058 + ], + [ + 105.133728027000075, + 12.358886719000054 + ], + [ + 105.131896973000039, + 12.362121582000043 + ], + [ + 105.129272461000085, + 12.365478516000053 + ], + [ + 105.132690430000082, + 12.368530273000033 + ], + [ + 105.137695312000062, + 12.370727539000029 + ], + [ + 105.141723633000083, + 12.373474121000072 + ], + [ + 105.143920898000033, + 12.376708984000061 + ], + [ + 105.147277832000043, + 12.378906250000057 + ], + [ + 105.152526855000076, + 12.380126953000058 + ], + [ + 105.156494141000053, + 12.38171386700003 + ], + [ + 105.160278320000089, + 12.381530762000068 + ], + [ + 105.162902832000043, + 12.383911133000026 + ], + [ + 105.165893555000082, + 12.387329102000024 + ], + [ + 105.167907715000069, + 12.390502930000025 + ], + [ + 105.167480469000054, + 12.394470215000069 + ], + [ + 105.166687012000068, + 12.397521973000039 + ], + [ + 105.169494629000042, + 12.400512695000032 + ], + [ + 105.173522949000073, + 12.397277832000043 + ], + [ + 105.178527832000043, + 12.397094727000024 + ], + [ + 105.182678223000039, + 12.397705078000058 + ], + [ + 105.185485840000069, + 12.396911621000072 + ], + [ + 105.188903809000067, + 12.393493652000075 + ], + [ + 105.192077637000068, + 12.39288330100004 + ], + [ + 105.195922852000081, + 12.39288330100004 + ], + [ + 105.199279785000044, + 12.392517090000069 + ], + [ + 105.202270508000083, + 12.392700195000032 + ], + [ + 105.204895020000038, + 12.393920898000033 + ], + [ + 105.208129883000083, + 12.394470215000069 + ], + [ + 105.211730957000043, + 12.396301270000038 + ], + [ + 105.213317871000072, + 12.400329590000069 + ], + [ + 105.217895508000083, + 12.401123047000056 + ], + [ + 105.221496582000043, + 12.401306152000075 + ], + [ + 105.225280762000068, + 12.398498535000044 + ], + [ + 105.229125977000081, + 12.396118164000029 + ], + [ + 105.232299805000082, + 12.395507812000062 + ], + [ + 105.235900879000042, + 12.394470215000069 + ], + [ + 105.240112305000082, + 12.394714355000076 + ], + [ + 105.243286133000083, + 12.396301270000038 + ], + [ + 105.246276855000076, + 12.397888184000067 + ], + [ + 105.25030517600004, + 12.398498535000044 + ], + [ + 105.254516602000081, + 12.398071289000029 + ], + [ + 105.258300781000059, + 12.399108887000068 + ], + [ + 105.261291504000042, + 12.399902344000054 + ], + [ + 105.264099121000072, + 12.399108887000068 + ], + [ + 105.267272949000073, + 12.396484375000057 + ], + [ + 105.269714355000076, + 12.394897461000028 + ], + [ + 105.272094727000081, + 12.39147949200003 + ], + [ + 105.274291992000087, + 12.387512207000043 + ], + [ + 105.276123047000056, + 12.384277344000054 + ], + [ + 105.279907227000081, + 12.382690430000025 + ], + [ + 105.28350830100004, + 12.384704590000069 + ], + [ + 105.288513184000067, + 12.384887695000032 + ], + [ + 105.292724609000061, + 12.383728027000075 + ], + [ + 105.296875, + 12.383300781000059 + ], + [ + 105.299926758000083, + 12.383300781000059 + ], + [ + 105.303894043000071, + 12.383300781000059 + ], + [ + 105.308715820000089, + 12.38311767600004 + ], + [ + 105.311706543000071, + 12.382873535000044 + ], + [ + 105.314697266000053, + 12.382873535000044 + ], + [ + 105.317504883000083, + 12.380920410000044 + ], + [ + 105.319519043000071, + 12.375915527000075 + ], + [ + 105.324096680000082, + 12.373474121000072 + ], + [ + 105.328491211000085, + 12.371704102000024 + ], + [ + 105.330322266000053, + 12.368896484000061 + ], + [ + 105.329895020000038, + 12.365478516000053 + ], + [ + 105.330078125000057, + 12.361877441000047 + ], + [ + 105.331909180000082, + 12.35772705100004 + ], + [ + 105.335876465000069, + 12.357116699000073 + ], + [ + 105.339477539000086, + 12.356689453000058 + ], + [ + 105.343688965000069, + 12.356872559000067 + ], + [ + 105.346923828000058, + 12.356872559000067 + ], + [ + 105.350891113000046, + 12.358703613000046 + ], + [ + 105.354675293000071, + 12.360107422000056 + ], + [ + 105.357910156000059, + 12.361511230000076 + ], + [ + 105.360900879000042, + 12.363891602000024 + ], + [ + 105.364318848000039, + 12.366516113000046 + ], + [ + 105.365478516000053, + 12.371276855000076 + ], + [ + 105.366882324000073, + 12.374877930000025 + ], + [ + 105.367675781000059, + 12.380493164000029 + ], + [ + 105.369079590000069, + 12.385925293000071 + ], + [ + 105.371704102000081, + 12.388122559000067 + ], + [ + 105.372497559000067, + 12.39288330100004 + ], + [ + 105.373718262000068, + 12.396484375000057 + ], + [ + 105.374877930000082, + 12.40069580100004 + ], + [ + 105.376281738000046, + 12.404907227000024 + ], + [ + 105.377685547000056, + 12.407897949000073 + ], + [ + 105.37530517600004, + 12.411926270000038 + ], + [ + 105.377075195000089, + 12.415710449000073 + ], + [ + 105.380310059000067, + 12.418090820000032 + ], + [ + 105.382690430000082, + 12.420104980000076 + ], + [ + 105.383728027000075, + 12.423278809000067 + ], + [ + 105.382873535000044, + 12.42608642600004 + ], + [ + 105.384277344000054, + 12.428710937000062 + ], + [ + 105.386108398000033, + 12.431091309000067 + ], + [ + 105.388488770000038, + 12.434326172000056 + ], + [ + 105.389526367000087, + 12.439514160000044 + ], + [ + 105.390319824000073, + 12.442687988000046 + ], + [ + 105.392089844000054, + 12.445678711000028 + ], + [ + 105.391296387000068, + 12.451110840000069 + ], + [ + 105.392089844000054, + 12.455322266000053 + ], + [ + 105.394287109000061, + 12.458679199000073 + ], + [ + 105.395874023000033, + 12.462280273000033 + ], + [ + 105.399719238000046, + 12.465270996000072 + ], + [ + 105.401489258000083, + 12.468078613000046 + ], + [ + 105.400512695000089, + 12.471496582000043 + ], + [ + 105.399108887000068, + 12.474487305000025 + ], + [ + 105.401672363000046, + 12.476501465000069 + ], + [ + 105.400085449000073, + 12.480285645000038 + ], + [ + 105.397521973000039, + 12.481872559000067 + ], + [ + 105.398925781000059, + 12.485717773000033 + ], + [ + 105.402282715000069, + 12.487121582000043 + ], + [ + 105.405883789000086, + 12.486083984000061 + ], + [ + 105.40850830100004, + 12.482910156000059 + ], + [ + 105.413330078000058, + 12.482482910000044 + ], + [ + 105.41632080100004, + 12.484313965000069 + ], + [ + 105.416870117000087, + 12.487915039000029 + ], + [ + 105.420288086000085, + 12.488525391000053 + ], + [ + 105.423522949000073, + 12.488098145000038 + ], + [ + 105.427307129000042, + 12.488891602000024 + ], + [ + 105.431091309000067, + 12.488281250000057 + ], + [ + 105.435485840000069, + 12.489685059000067 + ], + [ + 105.437927246000072, + 12.492675781000059 + ], + [ + 105.440673828000058, + 12.494506836000028 + ], + [ + 105.440917969000054, + 12.490905762000068 + ], + [ + 105.444702148000033, + 12.490478516000053 + ], + [ + 105.448913574000073, + 12.486328125000057 + ], + [ + 105.451904297000056, + 12.480895996000072 + ], + [ + 105.453491211000085, + 12.476501465000069 + ], + [ + 105.457275391000053, + 12.478881836000028 + ], + [ + 105.459716797000056, + 12.477294922000056 + ], + [ + 105.462280273000033, + 12.473876953000058 + ], + [ + 105.465881348000039, + 12.469299316000047 + ], + [ + 105.46710205100004, + 12.472106934000067 + ], + [ + 105.470092773000033, + 12.472717285000044 + ], + [ + 105.473083496000072, + 12.469299316000047 + ], + [ + 105.476501465000069, + 12.467895508000026 + ], + [ + 105.47491455100004, + 12.464904785000044 + ], + [ + 105.475708008000083, + 12.461914062000062 + ], + [ + 105.478881836000085, + 12.463500977000024 + ], + [ + 105.483093262000068, + 12.462890625000057 + ], + [ + 105.486511230000076, + 12.459899902000075 + ], + [ + 105.490112305000082, + 12.457092285000044 + ], + [ + 105.487121582000043, + 12.454528809000067 + ], + [ + 105.491271973000039, + 12.451721191000047 + ], + [ + 105.496520996000072, + 12.450927734000061 + ], + [ + 105.500488281000059, + 12.45007324200003 + ], + [ + 105.503906250000057, + 12.452880859000061 + ], + [ + 105.506896973000039, + 12.454101562000062 + ], + [ + 105.511108398000033, + 12.453918457000043 + ], + [ + 105.515502930000082, + 12.455322266000053 + ], + [ + 105.519470215000069, + 12.456481934000067 + ], + [ + 105.524108887000068, + 12.456481934000067 + ], + [ + 105.524108887000068, + 12.459716797000056 + ], + [ + 105.527282715000069, + 12.461120605000076 + ], + [ + 105.52569580100004, + 12.463500977000024 + ], + [ + 105.528503418000071, + 12.465515137000068 + ], + [ + 105.530517578000058, + 12.469726562000062 + ], + [ + 105.531494141000053, + 12.473327637000068 + ], + [ + 105.533874512000068, + 12.476501465000069 + ], + [ + 105.537109375000057, + 12.478271484000061 + ], + [ + 105.540527344000054, + 12.481689453000058 + ], + [ + 105.543090820000089, + 12.48468017600004 + ], + [ + 105.545898437000062, + 12.488281250000057 + ], + [ + 105.548522949000073, + 12.491882324000073 + ], + [ + 105.552917480000076, + 12.492309570000032 + ], + [ + 105.558105469000054, + 12.492675781000059 + ], + [ + 105.5625, + 12.492919922000056 + ], + [ + 105.566101074000073, + 12.493103027000075 + ], + [ + 105.569702148000033, + 12.493286133000026 + ], + [ + 105.573913574000073, + 12.493286133000026 + ], + [ + 105.577697754000042, + 12.493530273000033 + ], + [ + 105.582092285000044, + 12.493713379000042 + ], + [ + 105.586303711000085, + 12.493896484000061 + ], + [ + 105.589477539000086, + 12.494323730000076 + ], + [ + 105.593078613000046, + 12.494506836000028 + ], + [ + 105.597106934000067, + 12.494689941000047 + ], + [ + 105.601318359000061, + 12.493530273000033 + ], + [ + 105.606323242000087, + 12.494506836000028 + ], + [ + 105.610473633000083, + 12.494323730000076 + ], + [ + 105.614318848000039, + 12.494079590000069 + ], + [ + 105.617675781000059, + 12.494079590000069 + ], + [ + 105.622314453000058, + 12.494323730000076 + ], + [ + 105.627319336000085, + 12.494323730000076 + ], + [ + 105.630493164000086, + 12.494323730000076 + ], + [ + 105.634277344000054, + 12.494873047000056 + ], + [ + 105.639282227000081, + 12.494079590000069 + ], + [ + 105.643127441000047, + 12.493286133000026 + ], + [ + 105.646911621000072, + 12.492919922000056 + ], + [ + 105.650878906000059, + 12.492675781000059 + ], + [ + 105.656311035000044, + 12.491882324000073 + ], + [ + 105.659729004000042, + 12.491516113000046 + ], + [ + 105.663085937000062, + 12.49108886700003 + ], + [ + 105.666870117000087, + 12.490905762000068 + ], + [ + 105.671875, + 12.490295410000044 + ], + [ + 105.675476074000073, + 12.490722656000059 + ], + [ + 105.678527832000043, + 12.491271973000039 + ], + [ + 105.681274414000086, + 12.492126465000069 + ], + [ + 105.685729980000076, + 12.493530273000033 + ], + [ + 105.690490723000039, + 12.494689941000047 + ], + [ + 105.695922852000081, + 12.494873047000056 + ], + [ + 105.700927734000061, + 12.494323730000076 + ], + [ + 105.704895020000038, + 12.494689941000047 + ], + [ + 105.709106445000089, + 12.496520996000072 + ], + [ + 105.712707520000038, + 12.49890136700003 + ], + [ + 105.715881348000039, + 12.500915527000075 + ], + [ + 105.719726562000062, + 12.501525879000042 + ], + [ + 105.722900391000053, + 12.501525879000042 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 3.6794963511600001, + "Shape_Area": 0.44023332184300001, + "ADM1_EN": "Kampong Chhnang", + "ADM1_PCODE": "KH04", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 104.445678711000085, + 12.509887695000032 + ], + [ + 104.442871094000054, + 12.51452636700003 + ], + [ + 104.447875977000081, + 12.512329102000024 + ], + [ + 104.445678711000085, + 12.509887695000032 + ] + ] + ], + [ + [ + [ + 104.455322266000053, + 12.516906738000046 + ], + [ + 104.450927734000061, + 12.515502930000025 + ], + [ + 104.445922852000081, + 12.516113281000059 + ], + [ + 104.444274902000075, + 12.519104004000042 + ], + [ + 104.448730469000054, + 12.519287109000061 + ], + [ + 104.451904297000056, + 12.518310547000056 + ], + [ + 104.455322266000053, + 12.516906738000046 + ] + ] + ], + [ + [ + [ + 104.438720703000058, + 12.525085449000073 + ], + [ + 104.440490723000039, + 12.522521973000039 + ], + [ + 104.436279297000056, + 12.522888184000067 + ], + [ + 104.432922363000046, + 12.524475098000039 + ], + [ + 104.430114746000072, + 12.526916504000042 + ], + [ + 104.427673340000069, + 12.530883789000029 + ], + [ + 104.430725098000039, + 12.531127930000025 + ], + [ + 104.434875488000046, + 12.527282715000069 + ], + [ + 104.438720703000058, + 12.525085449000073 + ] + ] + ], + [ + [ + [ + 104.442871094000054, + 12.51452636700003 + ], + [ + 104.4375, + 12.51452636700003 + ], + [ + 104.441284180000082, + 12.511901855000076 + ], + [ + 104.445678711000085, + 12.509887695000032 + ], + [ + 104.44952392600004, + 12.509521484000061 + ], + [ + 104.453125, + 12.510681152000075 + ], + [ + 104.457519531000059, + 12.511901855000076 + ], + [ + 104.461486816000047, + 12.513122559000067 + ], + [ + 104.465087891000053, + 12.512512207000043 + ], + [ + 104.468322754000042, + 12.510314941000047 + ], + [ + 104.471923828000058, + 12.508300781000059 + ], + [ + 104.475280762000068, + 12.507690430000025 + ], + [ + 104.478698730000076, + 12.509094238000046 + ], + [ + 104.474670410000044, + 12.511108398000033 + ], + [ + 104.472290039000086, + 12.513305664000029 + ], + [ + 104.475524902000075, + 12.514709473000039 + ], + [ + 104.478881836000085, + 12.513916016000053 + ], + [ + 104.481872559000067, + 12.511718750000057 + ], + [ + 104.485107422000056, + 12.508911133000026 + ], + [ + 104.488525391000053, + 12.505920410000044 + ], + [ + 104.491699219000054, + 12.503906250000057 + ], + [ + 104.494873047000056, + 12.502502441000047 + ], + [ + 104.496704102000081, + 12.498291016000053 + ], + [ + 104.497497559000067, + 12.494506836000028 + ], + [ + 104.498718262000068, + 12.49108886700003 + ], + [ + 104.500915527000075, + 12.489318848000039 + ], + [ + 104.504089355000076, + 12.486511230000076 + ], + [ + 104.505126953000058, + 12.483703613000046 + ], + [ + 104.505310059000067, + 12.479919434000067 + ], + [ + 104.506286621000072, + 12.476318359000061 + ], + [ + 104.507507324000073, + 12.472717285000044 + ], + [ + 104.509887695000032, + 12.468872070000032 + ], + [ + 104.511901855000076, + 12.466308594000054 + ], + [ + 104.513916016000053, + 12.461914062000062 + ], + [ + 104.515686035000044, + 12.458312988000046 + ], + [ + 104.520874023000033, + 12.456909180000025 + ], + [ + 104.523925781000059, + 12.452880859000061 + ], + [ + 104.526916504000042, + 12.44952392600004 + ], + [ + 104.529296875000057, + 12.445922852000024 + ], + [ + 104.533691406000059, + 12.446716309000067 + ], + [ + 104.537719727000081, + 12.444091797000056 + ], + [ + 104.541870117000087, + 12.441284180000025 + ], + [ + 104.546508789000086, + 12.440490723000039 + ], + [ + 104.550903320000032, + 12.439086914000029 + ], + [ + 104.554321289000086, + 12.436279297000056 + ], + [ + 104.557678223000039, + 12.433471680000025 + ], + [ + 104.560913086000085, + 12.430297852000024 + ], + [ + 104.566528320000089, + 12.42608642600004 + ], + [ + 104.571289062000062, + 12.424926758000026 + ], + [ + 104.571472168000071, + 12.428894043000071 + ], + [ + 104.570312500000057, + 12.432678223000039 + ], + [ + 104.570495605000076, + 12.436096191000047 + ], + [ + 104.573730469000054, + 12.433471680000025 + ], + [ + 104.575683594000054, + 12.430114746000072 + ], + [ + 104.577514648000033, + 12.425903320000032 + ], + [ + 104.579284668000071, + 12.422119141000053 + ], + [ + 104.580688477000081, + 12.42468261700003 + ], + [ + 104.580871582000043, + 12.427917480000076 + ], + [ + 104.580078125000057, + 12.432312012000068 + ], + [ + 104.576110840000069, + 12.436523437000062 + ], + [ + 104.574707031000059, + 12.44030761700003 + ], + [ + 104.572692871000072, + 12.443298340000069 + ], + [ + 104.569702148000033, + 12.447326660000044 + ], + [ + 104.565917969000054, + 12.449279785000044 + ], + [ + 104.563293457000043, + 12.451110840000069 + ], + [ + 104.559875488000046, + 12.453491211000028 + ], + [ + 104.556884766000053, + 12.455688477000024 + ], + [ + 104.554504395000038, + 12.457519531000059 + ], + [ + 104.551513672000056, + 12.459472656000059 + ], + [ + 104.548278809000067, + 12.460510254000042 + ], + [ + 104.545898437000062, + 12.462280273000033 + ], + [ + 104.54327392600004, + 12.464111328000058 + ], + [ + 104.540893555000082, + 12.465881348000039 + ], + [ + 104.538330078000058, + 12.468078613000046 + ], + [ + 104.535705566000047, + 12.470886230000076 + ], + [ + 104.532287598000039, + 12.475280762000068 + ], + [ + 104.530273437000062, + 12.478881836000028 + ], + [ + 104.528686523000033, + 12.48132324200003 + ], + [ + 104.525878906000059, + 12.483886719000054 + ], + [ + 104.523681641000053, + 12.488708496000072 + ], + [ + 104.528076172000056, + 12.487915039000029 + ], + [ + 104.531921387000068, + 12.485900879000042 + ], + [ + 104.534912109000061, + 12.483886719000054 + ], + [ + 104.537902832000043, + 12.482482910000044 + ], + [ + 104.541076660000044, + 12.481872559000067 + ], + [ + 104.544128418000071, + 12.480712891000053 + ], + [ + 104.547729492000087, + 12.478698730000076 + ], + [ + 104.550903320000032, + 12.476928711000028 + ], + [ + 104.553527832000043, + 12.474304199000073 + ], + [ + 104.555725098000039, + 12.471679687000062 + ], + [ + 104.559692383000083, + 12.470275879000042 + ], + [ + 104.563110352000081, + 12.467895508000026 + ], + [ + 104.56671142600004, + 12.466125488000046 + ], + [ + 104.569702148000033, + 12.463073730000076 + ], + [ + 104.572875977000081, + 12.460083008000026 + ], + [ + 104.575500488000046, + 12.457092285000044 + ], + [ + 104.578308105000076, + 12.454711914000029 + ], + [ + 104.582092285000044, + 12.452270508000026 + ], + [ + 104.586914062000062, + 12.453674316000047 + ], + [ + 104.588500977000081, + 12.458312988000046 + ], + [ + 104.592712402000075, + 12.458312988000046 + ], + [ + 104.594726562000062, + 12.460876465000069 + ], + [ + 104.595092773000033, + 12.463928223000039 + ], + [ + 104.595703125000057, + 12.467712402000075 + ], + [ + 104.597290039000086, + 12.471313477000024 + ], + [ + 104.596130371000072, + 12.475524902000075 + ], + [ + 104.595886230000076, + 12.481079102000024 + ], + [ + 104.595092773000033, + 12.484924316000047 + ], + [ + 104.591308594000054, + 12.487670898000033 + ], + [ + 104.588500977000081, + 12.489501953000058 + ], + [ + 104.585876465000069, + 12.491882324000073 + ], + [ + 104.582275391000053, + 12.495483398000033 + ], + [ + 104.579284668000071, + 12.497497559000067 + ], + [ + 104.576293945000089, + 12.498474121000072 + ], + [ + 104.573120117000087, + 12.499694824000073 + ], + [ + 104.569702148000033, + 12.500488281000059 + ], + [ + 104.566284180000082, + 12.500488281000059 + ], + [ + 104.563110352000081, + 12.501525879000042 + ], + [ + 104.560119629000042, + 12.502502441000047 + ], + [ + 104.556701660000044, + 12.504272461000028 + ], + [ + 104.552124023000033, + 12.506530762000068 + ], + [ + 104.549072266000053, + 12.509521484000061 + ], + [ + 104.545715332000043, + 12.511901855000076 + ], + [ + 104.542907715000069, + 12.514282227000024 + ], + [ + 104.538696289000086, + 12.515502930000025 + ], + [ + 104.534301758000083, + 12.516113281000059 + ], + [ + 104.530090332000043, + 12.516723633000026 + ], + [ + 104.526672363000046, + 12.518310547000056 + ], + [ + 104.522521973000039, + 12.519714355000076 + ], + [ + 104.518676758000083, + 12.521301270000038 + ], + [ + 104.514892578000058, + 12.522888184000067 + ], + [ + 104.512084961000085, + 12.524719238000046 + ], + [ + 104.510498047000056, + 12.527893066000047 + ], + [ + 104.510925293000071, + 12.531494141000053 + ], + [ + 104.511108398000033, + 12.534484863000046 + ], + [ + 104.513305664000086, + 12.538513184000067 + ], + [ + 104.516906738000046, + 12.540527344000054 + ], + [ + 104.51788330100004, + 12.543884277000075 + ], + [ + 104.519714355000076, + 12.546508789000029 + ], + [ + 104.519104004000042, + 12.550109863000046 + ], + [ + 104.51788330100004, + 12.553894043000071 + ], + [ + 104.517089844000054, + 12.556884766000053 + ], + [ + 104.515502930000082, + 12.560729980000076 + ], + [ + 104.51788330100004, + 12.565490723000039 + ], + [ + 104.520874023000033, + 12.568725586000028 + ], + [ + 104.523925781000059, + 12.570312500000057 + ], + [ + 104.526672363000046, + 12.571899414000029 + ], + [ + 104.530090332000043, + 12.574096680000025 + ], + [ + 104.534118652000075, + 12.576110840000069 + ], + [ + 104.537109375000057, + 12.578308105000076 + ], + [ + 104.540893555000082, + 12.581115723000039 + ], + [ + 104.543701172000056, + 12.582702637000068 + ], + [ + 104.546691895000038, + 12.583312988000046 + ], + [ + 104.550476074000073, + 12.585083008000026 + ], + [ + 104.554077148000033, + 12.587097168000071 + ], + [ + 104.557312012000068, + 12.588500977000024 + ], + [ + 104.560729980000076, + 12.589904785000044 + ], + [ + 104.563476562000062, + 12.590881348000039 + ], + [ + 104.566284180000082, + 12.59210205100004 + ], + [ + 104.569702148000033, + 12.593078613000046 + ], + [ + 104.573120117000087, + 12.593505859000061 + ], + [ + 104.577697754000042, + 12.593688965000069 + ], + [ + 104.582519531000059, + 12.595520020000038 + ], + [ + 104.587707520000038, + 12.598693848000039 + ], + [ + 104.591674805000082, + 12.601501465000069 + ], + [ + 104.594909668000071, + 12.602722168000071 + ], + [ + 104.598693848000039, + 12.602722168000071 + ], + [ + 104.603698730000076, + 12.602294922000056 + ], + [ + 104.606872559000067, + 12.602294922000056 + ], + [ + 104.60968017600004, + 12.603271484000061 + ], + [ + 104.613708496000072, + 12.604309082000043 + ], + [ + 104.617919922000056, + 12.604919434000067 + ], + [ + 104.621093750000057, + 12.605712891000053 + ], + [ + 104.624084473000039, + 12.606689453000058 + ], + [ + 104.627929687000062, + 12.607299805000025 + ], + [ + 104.631713867000087, + 12.606079102000024 + ], + [ + 104.635925293000071, + 12.604309082000043 + ], + [ + 104.64093017600004, + 12.601928711000028 + ], + [ + 104.644104004000042, + 12.600280762000068 + ], + [ + 104.647277832000043, + 12.598876953000058 + ], + [ + 104.650329590000069, + 12.597290039000029 + ], + [ + 104.654479980000076, + 12.594909668000071 + ], + [ + 104.659729004000042, + 12.592895508000026 + ], + [ + 104.664306641000053, + 12.591308594000054 + ], + [ + 104.668090820000089, + 12.589904785000044 + ], + [ + 104.672912598000039, + 12.588684082000043 + ], + [ + 104.678527832000043, + 12.587524414000029 + ], + [ + 104.682312012000068, + 12.585693359000061 + ], + [ + 104.685485840000069, + 12.58428955100004 + ], + [ + 104.689270020000038, + 12.582702637000068 + ], + [ + 104.692504883000083, + 12.580871582000043 + ], + [ + 104.695312500000057, + 12.579711914000029 + ], + [ + 104.698303223000039, + 12.577880859000061 + ], + [ + 104.702697754000042, + 12.575500488000046 + ], + [ + 104.705322266000053, + 12.573913574000073 + ], + [ + 104.707702637000068, + 12.572082520000038 + ], + [ + 104.711303711000085, + 12.569702148000033 + ], + [ + 104.712890625000057, + 12.56671142600004 + ], + [ + 104.716918945000089, + 12.56671142600004 + ], + [ + 104.719482422000056, + 12.564880371000072 + ], + [ + 104.723083496000072, + 12.562072754000042 + ], + [ + 104.726074219000054, + 12.560119629000042 + ], + [ + 104.729675293000071, + 12.558471680000025 + ], + [ + 104.73272705100004, + 12.556274414000029 + ], + [ + 104.736083984000061, + 12.554504395000038 + ], + [ + 104.738708496000072, + 12.553100586000028 + ], + [ + 104.742309570000089, + 12.551330566000047 + ], + [ + 104.745910645000038, + 12.549926758000026 + ], + [ + 104.763305664000086, + 12.545715332000043 + ], + [ + 104.794128418000071, + 12.537475586000028 + ], + [ + 104.817077637000068, + 12.531921387000068 + ], + [ + 104.820678711000085, + 12.53210449200003 + ], + [ + 104.820922852000081, + 12.528320312000062 + ], + [ + 104.824707031000059, + 12.525512695000032 + ], + [ + 104.827880859000061, + 12.522277832000043 + ], + [ + 104.826293945000089, + 12.51788330100004 + ], + [ + 104.825927734000061, + 12.514892578000058 + ], + [ + 104.824707031000059, + 12.511718750000057 + ], + [ + 104.822326660000044, + 12.508483887000068 + ], + [ + 104.823913574000073, + 12.505676270000038 + ], + [ + 104.825500488000046, + 12.502502441000047 + ], + [ + 104.82452392600004, + 12.499328613000046 + ], + [ + 104.822326660000044, + 12.497497559000067 + ], + [ + 104.821716309000067, + 12.494079590000069 + ], + [ + 104.818481445000089, + 12.493286133000026 + ], + [ + 104.815490723000039, + 12.491699219000054 + ], + [ + 104.814880371000072, + 12.488525391000053 + ], + [ + 104.815917969000054, + 12.485107422000056 + ], + [ + 104.818481445000089, + 12.481872559000067 + ], + [ + 104.822509766000053, + 12.481506348000039 + ], + [ + 104.825927734000061, + 12.480285645000038 + ], + [ + 104.827880859000061, + 12.478088379000042 + ], + [ + 104.830688477000081, + 12.477111816000047 + ], + [ + 104.833312988000046, + 12.478271484000061 + ], + [ + 104.837524414000086, + 12.478271484000061 + ], + [ + 104.840881348000039, + 12.474487305000025 + ], + [ + 104.840698242000087, + 12.470275879000042 + ], + [ + 104.836486816000047, + 12.469299316000047 + ], + [ + 104.832275391000053, + 12.468322754000042 + ], + [ + 104.828308105000076, + 12.465881348000039 + ], + [ + 104.830505371000072, + 12.462524414000029 + ], + [ + 104.832885742000087, + 12.460083008000026 + ], + [ + 104.833679199000073, + 12.455688477000024 + ], + [ + 104.836120605000076, + 12.451721191000047 + ], + [ + 104.839111328000058, + 12.450927734000061 + ], + [ + 104.841918945000089, + 12.450317383000026 + ], + [ + 104.840087891000053, + 12.446289062000062 + ], + [ + 104.836486816000047, + 12.443725586000028 + ], + [ + 104.838684082000043, + 12.44171142600004 + ], + [ + 104.842529297000056, + 12.441528320000032 + ], + [ + 104.843688965000069, + 12.437683105000076 + ], + [ + 104.842712402000075, + 12.434326172000056 + ], + [ + 104.845886230000076, + 12.430114746000072 + ], + [ + 104.849304199000073, + 12.427490234000061 + ], + [ + 104.851928711000085, + 12.426330566000047 + ], + [ + 104.855529785000044, + 12.427490234000061 + ], + [ + 104.860473633000083, + 12.429321289000029 + ], + [ + 104.861694336000085, + 12.425903320000032 + ], + [ + 104.861328125000057, + 12.422302246000072 + ], + [ + 104.863708496000072, + 12.420715332000043 + ], + [ + 104.862670898000033, + 12.417480469000054 + ], + [ + 104.865112305000082, + 12.414672852000024 + ], + [ + 104.867126465000069, + 12.410278320000032 + ], + [ + 104.865722656000059, + 12.406677246000072 + ], + [ + 104.866516113000046, + 12.399108887000068 + ], + [ + 104.865295410000044, + 12.394470215000069 + ], + [ + 104.860717773000033, + 12.389709473000039 + ], + [ + 104.861511230000076, + 12.384277344000054 + ], + [ + 104.860717773000033, + 12.380126953000058 + ], + [ + 104.863098145000038, + 12.374694824000073 + ], + [ + 104.862121582000043, + 12.370910645000038 + ], + [ + 104.865112305000082, + 12.370483398000033 + ], + [ + 104.867309570000089, + 12.373474121000072 + ], + [ + 104.869873047000056, + 12.372070312000062 + ], + [ + 104.873107910000044, + 12.373474121000072 + ], + [ + 104.874084473000039, + 12.376708984000061 + ], + [ + 104.877075195000089, + 12.379272461000028 + ], + [ + 104.879882812000062, + 12.380676270000038 + ], + [ + 104.882873535000044, + 12.38171386700003 + ], + [ + 104.88507080100004, + 12.385925293000071 + ], + [ + 104.885925293000071, + 12.390319824000073 + ], + [ + 104.884521484000061, + 12.39288330100004 + ], + [ + 104.886474609000061, + 12.396118164000029 + ], + [ + 104.89093017600004, + 12.400329590000069 + ], + [ + 104.894104004000042, + 12.396118164000029 + ], + [ + 104.895690918000071, + 12.392700195000032 + ], + [ + 104.896301270000038, + 12.389099121000072 + ], + [ + 104.895324707000043, + 12.386108398000033 + ], + [ + 104.893920898000033, + 12.382507324000073 + ], + [ + 104.894897461000085, + 12.377929687000062 + ], + [ + 104.898315430000082, + 12.375488281000059 + ], + [ + 104.898498535000044, + 12.372314453000058 + ], + [ + 104.900329590000069, + 12.369689941000047 + ], + [ + 104.899108887000068, + 12.366271973000039 + ], + [ + 104.897277832000043, + 12.363708496000072 + ], + [ + 104.896301270000038, + 12.360473633000026 + ], + [ + 104.893310547000056, + 12.35772705100004 + ], + [ + 104.891113281000059, + 12.354309082000043 + ], + [ + 104.893920898000033, + 12.351501465000069 + ], + [ + 104.894714355000076, + 12.348327637000068 + ], + [ + 104.893493652000075, + 12.345520020000038 + ], + [ + 104.892517090000069, + 12.342712402000075 + ], + [ + 104.889099121000072, + 12.34069824200003 + ], + [ + 104.885681152000075, + 12.340270996000072 + ], + [ + 104.882873535000044, + 12.339721680000025 + ], + [ + 104.879089355000076, + 12.337524414000029 + ], + [ + 104.87530517600004, + 12.333496094000054 + ], + [ + 104.871520996000072, + 12.330078125000057 + ], + [ + 104.868713379000042, + 12.325683594000054 + ], + [ + 104.865722656000059, + 12.325317383000026 + ], + [ + 104.862670898000033, + 12.323730469000054 + ], + [ + 104.862487793000071, + 12.319274902000075 + ], + [ + 104.861877441000047, + 12.315917969000054 + ], + [ + 104.85968017600004, + 12.312316895000038 + ], + [ + 104.857482910000044, + 12.309082031000059 + ], + [ + 104.854309082000043, + 12.305480957000043 + ], + [ + 104.851928711000085, + 12.303100586000028 + ], + [ + 104.853698730000076, + 12.299499512000068 + ], + [ + 104.854675293000071, + 12.295288086000028 + ], + [ + 104.852111816000047, + 12.29132080100004 + ], + [ + 104.851318359000061, + 12.287109375000057 + ], + [ + 104.852905273000033, + 12.283874512000068 + ], + [ + 104.856506348000039, + 12.281127930000025 + ], + [ + 104.857910156000059, + 12.277099609000061 + ], + [ + 104.858276367000087, + 12.272705078000058 + ], + [ + 104.860107422000056, + 12.268310547000056 + ], + [ + 104.861328125000057, + 12.263488770000038 + ], + [ + 104.862304687000062, + 12.260498047000056 + ], + [ + 104.863525391000053, + 12.257873535000044 + ], + [ + 104.865905762000068, + 12.254272461000028 + ], + [ + 104.868103027000075, + 12.251098633000026 + ], + [ + 104.869506836000085, + 12.247924805000025 + ], + [ + 104.871520996000072, + 12.245117187000062 + ], + [ + 104.872680664000086, + 12.24249267600004 + ], + [ + 104.872680664000086, + 12.238098145000038 + ], + [ + 104.874511719000054, + 12.232482910000044 + ], + [ + 104.877319336000085, + 12.228515625000057 + ], + [ + 104.880920410000044, + 12.226318359000061 + ], + [ + 104.883911133000083, + 12.225280762000068 + ], + [ + 104.887329102000081, + 12.223876953000058 + ], + [ + 104.888305664000086, + 12.220275879000042 + ], + [ + 104.885314941000047, + 12.218505859000061 + ], + [ + 104.883911133000083, + 12.214111328000058 + ], + [ + 104.882690430000082, + 12.20928955100004 + ], + [ + 104.886291504000042, + 12.206298828000058 + ], + [ + 104.890502930000082, + 12.207519531000059 + ], + [ + 104.893676758000083, + 12.208679199000073 + ], + [ + 104.897521973000039, + 12.208312988000046 + ], + [ + 104.899719238000046, + 12.204711914000029 + ], + [ + 104.900329590000069, + 12.200683594000054 + ], + [ + 104.900329590000069, + 12.196716309000067 + ], + [ + 104.90069580100004, + 12.193481445000032 + ], + [ + 104.901306152000075, + 12.189270020000038 + ], + [ + 104.901489258000083, + 12.184326172000056 + ], + [ + 104.901916504000042, + 12.180725098000039 + ], + [ + 104.901916504000042, + 12.17608642600004 + ], + [ + 104.901672363000046, + 12.171508789000029 + ], + [ + 104.901489258000083, + 12.166687012000068 + ], + [ + 104.901672363000046, + 12.163330078000058 + ], + [ + 104.901916504000042, + 12.159118652000075 + ], + [ + 104.899902344000054, + 12.155517578000058 + ], + [ + 104.897094727000081, + 12.152893066000047 + ], + [ + 104.894287109000061, + 12.149475098000039 + ], + [ + 104.891906738000046, + 12.146301270000038 + ], + [ + 104.889892578000058, + 12.143127441000047 + ], + [ + 104.887878418000071, + 12.138671875000057 + ], + [ + 104.886108398000033, + 12.134704590000069 + ], + [ + 104.885681152000075, + 12.130676270000038 + ], + [ + 104.886108398000033, + 12.121520996000072 + ], + [ + 104.882873535000044, + 12.116271973000039 + ], + [ + 104.882324219000054, + 12.110473633000026 + ], + [ + 104.877685547000056, + 12.097290039000029 + ], + [ + 104.868530273000033, + 12.073303223000039 + ], + [ + 104.872680664000086, + 12.072875977000024 + ], + [ + 104.877685547000056, + 12.074096680000025 + ], + [ + 104.881896973000039, + 12.071289062000062 + ], + [ + 104.884521484000061, + 12.065673828000058 + ], + [ + 104.888122559000067, + 12.060485840000069 + ], + [ + 104.889099121000072, + 12.056884766000053 + ], + [ + 104.890319824000073, + 12.053710937000062 + ], + [ + 104.889892578000058, + 12.048889160000044 + ], + [ + 104.891906738000046, + 12.044921875000057 + ], + [ + 104.892700195000089, + 12.040527344000054 + ], + [ + 104.889099121000072, + 12.035888672000056 + ], + [ + 104.887695312000062, + 12.032287598000039 + ], + [ + 104.889282227000081, + 12.028686523000033 + ], + [ + 104.890686035000044, + 12.025512695000032 + ], + [ + 104.892272949000073, + 12.022277832000043 + ], + [ + 104.894287109000061, + 12.018676758000026 + ], + [ + 104.893920898000033, + 12.015319824000073 + ], + [ + 104.892517090000069, + 12.012695312000062 + ], + [ + 104.888671875000057, + 12.010681152000075 + ], + [ + 104.889099121000072, + 12.006103516000053 + ], + [ + 104.888671875000057, + 12.002685547000056 + ], + [ + 104.888916016000053, + 11.998718262000068 + ], + [ + 104.888488770000038, + 11.994323730000076 + ], + [ + 104.885925293000071, + 11.990905762000068 + ], + [ + 104.884277344000054, + 11.987670898000033 + ], + [ + 104.881103516000053, + 11.988708496000072 + ], + [ + 104.877929687000062, + 11.987304687000062 + ], + [ + 104.878479004000042, + 11.990112305000025 + ], + [ + 104.875488281000059, + 11.990112305000025 + ], + [ + 104.872924805000082, + 11.988891602000024 + ], + [ + 104.869689941000047, + 11.987670898000033 + ], + [ + 104.867675781000059, + 11.985290527000075 + ], + [ + 104.863281250000057, + 11.983886719000054 + ], + [ + 104.859924316000047, + 11.982482910000044 + ], + [ + 104.857910156000059, + 11.978271484000061 + ], + [ + 104.854919434000067, + 11.975708008000026 + ], + [ + 104.852722168000071, + 11.973327637000068 + ], + [ + 104.851684570000089, + 11.970092773000033 + ], + [ + 104.851074219000054, + 11.966125488000046 + ], + [ + 104.850097656000059, + 11.963317871000072 + ], + [ + 104.849121094000054, + 11.960510254000042 + ], + [ + 104.847900391000053, + 11.956298828000058 + ], + [ + 104.845275879000042, + 11.951110840000069 + ], + [ + 104.841125488000046, + 11.947509766000053 + ], + [ + 104.836914062000062, + 11.946472168000071 + ], + [ + 104.833129883000083, + 11.945678711000028 + ], + [ + 104.831298828000058, + 11.942871094000054 + ], + [ + 104.829284668000071, + 11.937316895000038 + ], + [ + 104.828674316000047, + 11.933288574000073 + ], + [ + 104.828308105000076, + 11.929321289000029 + ], + [ + 104.828308105000076, + 11.924499512000068 + ], + [ + 104.828308105000076, + 11.921081543000071 + ], + [ + 104.828308105000076, + 11.91687011700003 + ], + [ + 104.827880859000061, + 11.913696289000029 + ], + [ + 104.826293945000089, + 11.90850830100004 + ], + [ + 104.823120117000087, + 11.903076172000056 + ], + [ + 104.821105957000043, + 11.90069580100004 + ], + [ + 104.819885254000042, + 11.896911621000072 + ], + [ + 104.821289062000062, + 11.892517090000069 + ], + [ + 104.821105957000043, + 11.888122559000067 + ], + [ + 104.817077637000068, + 11.890686035000044 + ], + [ + 104.814270020000038, + 11.89288330100004 + ], + [ + 104.810729980000076, + 11.894104004000042 + ], + [ + 104.805297852000081, + 11.892517090000069 + ], + [ + 104.800903320000089, + 11.89147949200003 + ], + [ + 104.796508789000086, + 11.89093017600004 + ], + [ + 104.791687012000068, + 11.890319824000073 + ], + [ + 104.787292480000076, + 11.888916016000053 + ], + [ + 104.782897949000073, + 11.885681152000075 + ], + [ + 104.780883789000086, + 11.881286621000072 + ], + [ + 104.777893066000047, + 11.881530762000068 + ], + [ + 104.775512695000089, + 11.883911133000026 + ], + [ + 104.772521973000039, + 11.886718750000057 + ], + [ + 104.769714355000076, + 11.885314941000047 + ], + [ + 104.767517090000069, + 11.883483887000068 + ], + [ + 104.764709473000039, + 11.88171386700003 + ], + [ + 104.768493652000075, + 11.871520996000072 + ], + [ + 104.771301270000038, + 11.86749267600004 + ], + [ + 104.771118164000086, + 11.864074707000043 + ], + [ + 104.769287109000061, + 11.861083984000061 + ], + [ + 104.771728516000053, + 11.857910156000059 + ], + [ + 104.770874023000033, + 11.853881836000028 + ], + [ + 104.773681641000053, + 11.850280762000068 + ], + [ + 104.776489258000083, + 11.846679687000062 + ], + [ + 104.779479980000076, + 11.842712402000075 + ], + [ + 104.782470703000058, + 11.839111328000058 + ], + [ + 104.779724121000072, + 11.837707520000038 + ], + [ + 104.777099609000061, + 11.836120605000076 + ], + [ + 104.773315430000082, + 11.835083008000026 + ], + [ + 104.769714355000076, + 11.834899902000075 + ], + [ + 104.767089844000054, + 11.833496094000054 + ], + [ + 104.764709473000039, + 11.830871582000043 + ], + [ + 104.761901855000076, + 11.829528809000067 + ], + [ + 104.755676270000038, + 11.827697754000042 + ], + [ + 104.750915527000075, + 11.829895020000038 + ], + [ + 104.746093750000057, + 11.830322266000053 + ], + [ + 104.74249267600004, + 11.830322266000053 + ], + [ + 104.739318848000039, + 11.828491211000028 + ], + [ + 104.735107422000056, + 11.827270508000026 + ], + [ + 104.731689453000058, + 11.824890137000068 + ], + [ + 104.726074219000054, + 11.823730469000054 + ], + [ + 104.725280762000068, + 11.820495605000076 + ], + [ + 104.725280762000068, + 11.816894531000059 + ], + [ + 104.722290039000086, + 11.814880371000072 + ], + [ + 104.719482422000056, + 11.813903809000067 + ], + [ + 104.715698242000087, + 11.814514160000044 + ], + [ + 104.712890625000057, + 11.812927246000072 + ], + [ + 104.710510254000042, + 11.810729980000076 + ], + [ + 104.707519531000059, + 11.810119629000042 + ], + [ + 104.704284668000071, + 11.809692383000026 + ], + [ + 104.700683594000054, + 11.810119629000042 + ], + [ + 104.696899414000086, + 11.811279297000056 + ], + [ + 104.693481445000089, + 11.813476562000062 + ], + [ + 104.689514160000044, + 11.814270020000038 + ], + [ + 104.685485840000069, + 11.810119629000042 + ], + [ + 104.682128906000059, + 11.807678223000039 + ], + [ + 104.677917480000076, + 11.80749511700003 + ], + [ + 104.672729492000087, + 11.805114746000072 + ], + [ + 104.669494629000042, + 11.806701660000044 + ], + [ + 104.666076660000044, + 11.807922363000046 + ], + [ + 104.662902832000043, + 11.808105469000054 + ], + [ + 104.660095215000069, + 11.809082031000059 + ], + [ + 104.655883789000086, + 11.809326172000056 + ], + [ + 104.652282715000069, + 11.810729980000076 + ], + [ + 104.648315430000082, + 11.808715820000032 + ], + [ + 104.644287109000061, + 11.807312012000068 + ], + [ + 104.641113281000059, + 11.806091309000067 + ], + [ + 104.637878418000071, + 11.807312012000068 + ], + [ + 104.632324219000054, + 11.807678223000039 + ], + [ + 104.628295898000033, + 11.806518555000025 + ], + [ + 104.624877930000082, + 11.806274414000029 + ], + [ + 104.621704102000081, + 11.803100586000028 + ], + [ + 104.617675781000059, + 11.79968261700003 + ], + [ + 104.614929199000073, + 11.797912598000039 + ], + [ + 104.611694336000085, + 11.796691895000038 + ], + [ + 104.608520508000083, + 11.793701172000056 + ], + [ + 104.604309082000043, + 11.792114258000026 + ], + [ + 104.599121094000054, + 11.790527344000054 + ], + [ + 104.595092773000033, + 11.790893555000025 + ], + [ + 104.593078613000046, + 11.786315918000071 + ], + [ + 104.589111328000058, + 11.783325195000032 + ], + [ + 104.587097168000071, + 11.779296875000057 + ], + [ + 104.583923340000069, + 11.776672363000046 + ], + [ + 104.579895020000038, + 11.774475098000039 + ], + [ + 104.57647705100004, + 11.770874023000033 + ], + [ + 104.575073242000087, + 11.766906738000046 + ], + [ + 104.571899414000086, + 11.765075684000067 + ], + [ + 104.567321777000075, + 11.762329102000024 + ], + [ + 104.564880371000072, + 11.759521484000061 + ], + [ + 104.563903809000067, + 11.756286621000072 + ], + [ + 104.560729980000076, + 11.754272461000028 + ], + [ + 104.557312012000068, + 11.751281738000046 + ], + [ + 104.553527832000043, + 11.748474121000072 + ], + [ + 104.551330566000047, + 11.743713379000042 + ], + [ + 104.548095703000058, + 11.742309570000032 + ], + [ + 104.545288086000085, + 11.740722656000059 + ], + [ + 104.542297363000046, + 11.741516113000046 + ], + [ + 104.538330078000058, + 11.741271973000039 + ], + [ + 104.533874512000068, + 11.737915039000029 + ], + [ + 104.530273437000062, + 11.738525391000053 + ], + [ + 104.526306152000075, + 11.737487793000071 + ], + [ + 104.522888184000067, + 11.736511230000076 + ], + [ + 104.518676758000083, + 11.735717773000033 + ], + [ + 104.515075684000067, + 11.734497070000032 + ], + [ + 104.511474609000061, + 11.735900879000042 + ], + [ + 104.50811767600004, + 11.736877441000047 + ], + [ + 104.505310059000067, + 11.737915039000029 + ], + [ + 104.501525879000042, + 11.737304687000062 + ], + [ + 104.497924805000082, + 11.737670898000033 + ], + [ + 104.494323730000076, + 11.737670898000033 + ], + [ + 104.492126465000069, + 11.735473633000026 + ], + [ + 104.488525391000053, + 11.735717773000033 + ], + [ + 104.485290527000075, + 11.738708496000072 + ], + [ + 104.481506348000039, + 11.741516113000046 + ], + [ + 104.477478027000075, + 11.742919922000056 + ], + [ + 104.474121094000054, + 11.744323730000076 + ], + [ + 104.472900391000053, + 11.747070312000062 + ], + [ + 104.470886230000076, + 11.749694824000073 + ], + [ + 104.467895508000083, + 11.753906250000057 + ], + [ + 104.462524414000086, + 11.755493164000029 + ], + [ + 104.458496094000054, + 11.754516602000024 + ], + [ + 104.454284668000071, + 11.75671386700003 + ], + [ + 104.449096680000082, + 11.757873535000044 + ], + [ + 104.445129395000038, + 11.758728027000075 + ], + [ + 104.442077637000068, + 11.759277344000054 + ], + [ + 104.438720703000058, + 11.759521484000061 + ], + [ + 104.434509277000075, + 11.758911133000026 + ], + [ + 104.431091309000067, + 11.759521484000061 + ], + [ + 104.427490234000061, + 11.760314941000047 + ], + [ + 104.423706055000082, + 11.760498047000056 + ], + [ + 104.419677734000061, + 11.760925293000071 + ], + [ + 104.415893555000082, + 11.762512207000043 + ], + [ + 104.413330078000058, + 11.764099121000072 + ], + [ + 104.409912109000061, + 11.763305664000029 + ], + [ + 104.406677246000072, + 11.766113281000059 + ], + [ + 104.403320312000062, + 11.766296387000068 + ], + [ + 104.400512695000032, + 11.768127441000047 + ], + [ + 104.396301270000038, + 11.767517090000069 + ], + [ + 104.392089844000054, + 11.768493652000075 + ], + [ + 104.388122559000067, + 11.770080566000047 + ], + [ + 104.382690430000082, + 11.769470215000069 + ], + [ + 104.378112793000071, + 11.768310547000056 + ], + [ + 104.37530517600004, + 11.769104004000042 + ], + [ + 104.373107910000044, + 11.770874023000033 + ], + [ + 104.370727539000086, + 11.773071289000029 + ], + [ + 104.366516113000046, + 11.776306152000075 + ], + [ + 104.363708496000072, + 11.780700684000067 + ], + [ + 104.361083984000061, + 11.784912109000061 + ], + [ + 104.359130859000061, + 11.787475586000028 + ], + [ + 104.356872559000067, + 11.789306641000053 + ], + [ + 104.354919434000067, + 11.792114258000026 + ], + [ + 104.353088379000042, + 11.794494629000042 + ], + [ + 104.350891113000046, + 11.796325684000067 + ], + [ + 104.348510742000087, + 11.798706055000025 + ], + [ + 104.345886230000076, + 11.800292969000054 + ], + [ + 104.344116211000085, + 11.803100586000028 + ], + [ + 104.339904785000044, + 11.805725098000039 + ], + [ + 104.336914062000062, + 11.809692383000026 + ], + [ + 104.334106445000032, + 11.813110352000024 + ], + [ + 104.331726074000073, + 11.815673828000058 + ], + [ + 104.331298828000058, + 11.818908691000047 + ], + [ + 104.328918457000043, + 11.822692871000072 + ], + [ + 104.325927734000061, + 11.82452392600004 + ], + [ + 104.323913574000073, + 11.826904297000056 + ], + [ + 104.323303223000039, + 11.829711914000029 + ], + [ + 104.323486328000058, + 11.833312988000046 + ], + [ + 104.322082520000038, + 11.835876465000069 + ], + [ + 104.321105957000043, + 11.840087891000053 + ], + [ + 104.322326660000044, + 11.842895508000026 + ], + [ + 104.321899414000086, + 11.846130371000072 + ], + [ + 104.323913574000073, + 11.848693848000039 + ], + [ + 104.32452392600004, + 11.852905273000033 + ], + [ + 104.322875977000081, + 11.856872559000067 + ], + [ + 104.320129395000038, + 11.860290527000075 + ], + [ + 104.318115234000061, + 11.862915039000029 + ], + [ + 104.317077637000068, + 11.86608886700003 + ], + [ + 104.314086914000086, + 11.869689941000047 + ], + [ + 104.312927246000072, + 11.872924805000025 + ], + [ + 104.312072754000042, + 11.877319336000028 + ], + [ + 104.308288574000073, + 11.879882812000062 + ], + [ + 104.306701660000044, + 11.882690430000025 + ], + [ + 104.302917480000076, + 11.884521484000061 + ], + [ + 104.299682617000087, + 11.887695312000062 + ], + [ + 104.296081543000071, + 11.889709473000039 + ], + [ + 104.293701172000056, + 11.892700195000032 + ], + [ + 104.290893555000082, + 11.894287109000061 + ], + [ + 104.285522461000085, + 11.896911621000072 + ], + [ + 104.280700684000067, + 11.898925781000059 + ], + [ + 104.277282715000069, + 11.902099609000061 + ], + [ + 104.275085449000073, + 11.904479980000076 + ], + [ + 104.272094727000081, + 11.906311035000044 + ], + [ + 104.269470215000069, + 11.909118652000075 + ], + [ + 104.267089844000054, + 11.911682129000042 + ], + [ + 104.26593017600004, + 11.915893555000025 + ], + [ + 104.266296387000068, + 11.919677734000061 + ], + [ + 104.26788330100004, + 11.922302246000072 + ], + [ + 104.268310547000056, + 11.926330566000047 + ], + [ + 104.265502930000082, + 11.928283691000047 + ], + [ + 104.264892578000058, + 11.931518555000025 + ], + [ + 104.263122559000067, + 11.934082031000059 + ], + [ + 104.260681152000075, + 11.936523437000062 + ], + [ + 104.259094238000046, + 11.940673828000058 + ], + [ + 104.257873535000044, + 11.945495605000076 + ], + [ + 104.256286621000072, + 11.94812011700003 + ], + [ + 104.255920410000044, + 11.951904297000056 + ], + [ + 104.256530762000068, + 11.956726074000073 + ], + [ + 104.259277344000054, + 11.961914062000062 + ], + [ + 104.262084961000085, + 11.968505859000061 + ], + [ + 104.262695312000062, + 11.972290039000029 + ], + [ + 104.263122559000067, + 11.979309082000043 + ], + [ + 104.262084961000085, + 11.982910156000059 + ], + [ + 104.260498047000056, + 11.985290527000075 + ], + [ + 104.258911133000083, + 11.988525391000053 + ], + [ + 104.258728027000075, + 11.992126465000069 + ], + [ + 104.258483887000068, + 11.995727539000029 + ], + [ + 104.256530762000068, + 11.998107910000044 + ], + [ + 104.254516602000081, + 12.001708984000061 + ], + [ + 104.251892090000069, + 12.005310059000067 + ], + [ + 104.247680664000086, + 12.005676270000038 + ], + [ + 104.242919922000056, + 12.00671386700003 + ], + [ + 104.237121582000043, + 12.008300781000059 + ], + [ + 104.234130859000061, + 12.010314941000047 + ], + [ + 104.22491455100004, + 12.012084961000028 + ], + [ + 104.221130371000072, + 12.014282227000024 + ], + [ + 104.217895508000083, + 12.018493652000075 + ], + [ + 104.216125488000046, + 12.022094727000024 + ], + [ + 104.214721680000082, + 12.025878906000059 + ], + [ + 104.213317871000072, + 12.030273437000062 + ], + [ + 104.212280273000033, + 12.033691406000059 + ], + [ + 104.210693359000061, + 12.036926270000038 + ], + [ + 104.209899902000075, + 12.03991699200003 + ], + [ + 104.208679199000073, + 12.043884277000075 + ], + [ + 104.208129883000083, + 12.047485352000024 + ], + [ + 104.205688477000081, + 12.051879883000026 + ], + [ + 104.204528809000067, + 12.056701660000044 + ], + [ + 104.203674316000047, + 12.061889648000033 + ], + [ + 104.202880859000061, + 12.066894531000059 + ], + [ + 104.202087402000075, + 12.069702148000033 + ], + [ + 104.200683594000054, + 12.073486328000058 + ], + [ + 104.199279785000044, + 12.076721191000047 + ], + [ + 104.200073242000087, + 12.080505371000072 + ], + [ + 104.198730469000054, + 12.084472656000059 + ], + [ + 104.197326660000044, + 12.088928223000039 + ], + [ + 104.196899414000086, + 12.09210205100004 + ], + [ + 104.196899414000086, + 12.095092773000033 + ], + [ + 104.194274902000075, + 12.09851074200003 + ], + [ + 104.192077637000068, + 12.102111816000047 + ], + [ + 104.190124512000068, + 12.104492187000062 + ], + [ + 104.186096191000047, + 12.105895996000072 + ], + [ + 104.186706543000071, + 12.10968017600004 + ], + [ + 104.186279297000056, + 12.113525391000053 + ], + [ + 104.186706543000071, + 12.117919922000056 + ], + [ + 104.186706543000071, + 12.123474121000072 + ], + [ + 104.186523437000062, + 12.127685547000056 + ], + [ + 104.186279297000056, + 12.132080078000058 + ], + [ + 104.185729980000076, + 12.136291504000042 + ], + [ + 104.186279297000056, + 12.140319824000073 + ], + [ + 104.186523437000062, + 12.143920898000033 + ], + [ + 104.185119629000042, + 12.147888184000067 + ], + [ + 104.185119629000042, + 12.152282715000069 + ], + [ + 104.185119629000042, + 12.156677246000072 + ], + [ + 104.184509277000075, + 12.160522461000028 + ], + [ + 104.184509277000075, + 12.163696289000029 + ], + [ + 104.183288574000073, + 12.167297363000046 + ], + [ + 104.181701660000044, + 12.169677734000061 + ], + [ + 104.179321289000086, + 12.171875 + ], + [ + 104.175476074000073, + 12.172912598000039 + ], + [ + 104.171875, + 12.17608642600004 + ], + [ + 104.171081543000071, + 12.179687500000057 + ], + [ + 104.171691895000038, + 12.182922363000046 + ], + [ + 104.171508789000086, + 12.187072754000042 + ], + [ + 104.172729492000087, + 12.189880371000072 + ], + [ + 104.174926758000083, + 12.191894531000059 + ], + [ + 104.176330566000047, + 12.194702148000033 + ], + [ + 104.173095703000058, + 12.196899414000029 + ], + [ + 104.172302246000072, + 12.201293945000032 + ], + [ + 104.173095703000058, + 12.205688477000024 + ], + [ + 104.174072266000053, + 12.209899902000075 + ], + [ + 104.175476074000073, + 12.214904785000044 + ], + [ + 104.17608642600004, + 12.219299316000047 + ], + [ + 104.176513672000056, + 12.222717285000044 + ], + [ + 104.177124023000033, + 12.226928711000028 + ], + [ + 104.178283691000047, + 12.233093262000068 + ], + [ + 104.180114746000072, + 12.237915039000029 + ], + [ + 104.180480957000043, + 12.241516113000046 + ], + [ + 104.182922363000046, + 12.244323730000076 + ], + [ + 104.185119629000042, + 12.248474121000072 + ], + [ + 104.187683105000076, + 12.252075195000032 + ], + [ + 104.188293457000043, + 12.255493164000029 + ], + [ + 104.190917969000054, + 12.259887695000032 + ], + [ + 104.194702148000033, + 12.262512207000043 + ], + [ + 104.197326660000044, + 12.264892578000058 + ], + [ + 104.199890137000068, + 12.266296387000068 + ], + [ + 104.201721191000047, + 12.270324707000043 + ], + [ + 104.204528809000067, + 12.273681641000053 + ], + [ + 104.208312988000046, + 12.277893066000047 + ], + [ + 104.209716797000056, + 12.280883789000029 + ], + [ + 104.212280273000033, + 12.284301758000026 + ], + [ + 104.215881348000039, + 12.286499023000033 + ], + [ + 104.218078613000046, + 12.288879395000038 + ], + [ + 104.220703125000057, + 12.290710449000073 + ], + [ + 104.223693848000039, + 12.29132080100004 + ], + [ + 104.227111816000047, + 12.291503906000059 + ], + [ + 104.230529785000044, + 12.29187011700003 + ], + [ + 104.233886719000054, + 12.292907715000069 + ], + [ + 104.237670898000033, + 12.292907715000069 + ], + [ + 104.24249267600004, + 12.294311523000033 + ], + [ + 104.245727539000086, + 12.295898437000062 + ], + [ + 104.25030517600004, + 12.294921875000057 + ], + [ + 104.254089355000076, + 12.295104980000076 + ], + [ + 104.257690430000082, + 12.296691895000038 + ], + [ + 104.261108398000033, + 12.298706055000025 + ], + [ + 104.263916016000053, + 12.299316406000059 + ], + [ + 104.265502930000082, + 12.301696777000075 + ], + [ + 104.266479492000087, + 12.305480957000043 + ], + [ + 104.269470215000069, + 12.309509277000075 + ], + [ + 104.272521973000039, + 12.313110352000024 + ], + [ + 104.276306152000075, + 12.31530761700003 + ], + [ + 104.279907227000081, + 12.318725586000028 + ], + [ + 104.282897949000073, + 12.321716309000067 + ], + [ + 104.285705566000047, + 12.322875977000024 + ], + [ + 104.288696289000086, + 12.322509766000053 + ], + [ + 104.292480469000054, + 12.322692871000072 + ], + [ + 104.296081543000071, + 12.322082520000038 + ], + [ + 104.300109863000046, + 12.323730469000054 + ], + [ + 104.303527832000043, + 12.326293945000032 + ], + [ + 104.307495117000087, + 12.32647705100004 + ], + [ + 104.311279297000056, + 12.326721191000047 + ], + [ + 104.314697266000053, + 12.327514648000033 + ], + [ + 104.315307617000087, + 12.331726074000073 + ], + [ + 104.318298340000069, + 12.332702637000068 + ], + [ + 104.321105957000043, + 12.333923340000069 + ], + [ + 104.324096680000082, + 12.335083008000026 + ], + [ + 104.326721191000047, + 12.337280273000033 + ], + [ + 104.328125, + 12.340270996000072 + ], + [ + 104.329528809000067, + 12.343078613000046 + ], + [ + 104.332092285000044, + 12.345520020000038 + ], + [ + 104.33428955100004, + 12.347473145000038 + ], + [ + 104.336486816000047, + 12.351074219000054 + ], + [ + 104.338928223000039, + 12.355285645000038 + ], + [ + 104.340087891000053, + 12.358093262000068 + ], + [ + 104.34991455100004, + 12.385498047000056 + ], + [ + 104.350280762000068, + 12.38952636700003 + ], + [ + 104.350280762000068, + 12.393493652000075 + ], + [ + 104.352478027000075, + 12.397888184000067 + ], + [ + 104.356323242000087, + 12.399902344000054 + ], + [ + 104.359924316000047, + 12.401672363000046 + ], + [ + 104.362670898000033, + 12.404113770000038 + ], + [ + 104.366088867000087, + 12.406127930000025 + ], + [ + 104.369689941000047, + 12.408081055000025 + ], + [ + 104.372497559000067, + 12.410522461000028 + ], + [ + 104.374511719000054, + 12.413696289000029 + ], + [ + 104.376281738000046, + 12.416503906000059 + ], + [ + 104.380920410000044, + 12.417114258000026 + ], + [ + 104.384887695000032, + 12.417297363000046 + ], + [ + 104.388488770000038, + 12.41827392600004 + ], + [ + 104.391906738000046, + 12.420288086000028 + ], + [ + 104.390502930000082, + 12.423278809000067 + ], + [ + 104.388122559000067, + 12.425903320000032 + ], + [ + 104.387329102000081, + 12.429504395000038 + ], + [ + 104.388305664000086, + 12.432922363000046 + ], + [ + 104.389099121000072, + 12.436706543000071 + ], + [ + 104.386474609000061, + 12.441284180000025 + ], + [ + 104.384521484000061, + 12.445129395000038 + ], + [ + 104.383483887000068, + 12.448486328000058 + ], + [ + 104.382324219000054, + 12.451721191000047 + ], + [ + 104.380676270000038, + 12.455871582000043 + ], + [ + 104.380676270000038, + 12.462280273000033 + ], + [ + 104.381103516000053, + 12.472106934000067 + ], + [ + 104.381896973000039, + 12.475280762000068 + ], + [ + 104.383300781000059, + 12.478881836000028 + ], + [ + 104.385925293000071, + 12.482116699000073 + ], + [ + 104.386901855000076, + 12.485900879000042 + ], + [ + 104.386474609000061, + 12.489318848000039 + ], + [ + 104.387512207000043, + 12.492126465000069 + ], + [ + 104.388305664000086, + 12.494873047000056 + ], + [ + 104.388916016000053, + 12.497924805000025 + ], + [ + 104.387878418000071, + 12.500671387000068 + ], + [ + 104.387084961000085, + 12.503479004000042 + ], + [ + 104.386718750000057, + 12.508483887000068 + ], + [ + 104.388916016000053, + 12.511901855000076 + ], + [ + 104.391906738000046, + 12.509521484000061 + ], + [ + 104.396911621000072, + 12.506896973000039 + ], + [ + 104.402099609000061, + 12.507080078000058 + ], + [ + 104.407104492000087, + 12.509704590000069 + ], + [ + 104.408874512000068, + 12.512512207000043 + ], + [ + 104.412719727000081, + 12.511474609000061 + ], + [ + 104.415893555000082, + 12.511901855000076 + ], + [ + 104.419128418000071, + 12.511474609000061 + ], + [ + 104.424926758000083, + 12.512329102000024 + ], + [ + 104.421691895000038, + 12.51593017600004 + ], + [ + 104.423278809000067, + 12.519714355000076 + ], + [ + 104.418701172000056, + 12.523498535000044 + ], + [ + 104.413696289000086, + 12.520690918000071 + ], + [ + 104.409912109000061, + 12.519287109000061 + ], + [ + 104.406311035000044, + 12.518676758000026 + ], + [ + 104.401489258000083, + 12.518920898000033 + ], + [ + 104.395690918000071, + 12.519714355000076 + ], + [ + 104.388916016000053, + 12.522277832000043 + ], + [ + 104.388122559000067, + 12.526489258000026 + ], + [ + 104.384704590000069, + 12.528503418000071 + ], + [ + 104.389892578000058, + 12.530700684000067 + ], + [ + 104.393127441000047, + 12.532470703000058 + ], + [ + 104.391479492000087, + 12.535278320000032 + ], + [ + 104.389282227000081, + 12.538330078000058 + ], + [ + 104.388671875000057, + 12.541076660000044 + ], + [ + 104.389526367000087, + 12.544311523000033 + ], + [ + 104.391479492000087, + 12.546508789000029 + ], + [ + 104.394714355000076, + 12.543518066000047 + ], + [ + 104.398498535000044, + 12.546325684000067 + ], + [ + 104.399902344000054, + 12.549926758000026 + ], + [ + 104.401916504000042, + 12.552490234000061 + ], + [ + 104.402893066000047, + 12.548889160000044 + ], + [ + 104.404724121000072, + 12.545288086000028 + ], + [ + 104.407104492000087, + 12.54132080100004 + ], + [ + 104.410278320000032, + 12.538513184000067 + ], + [ + 104.413696289000086, + 12.537902832000043 + ], + [ + 104.417114258000083, + 12.537109375000057 + ], + [ + 104.420715332000043, + 12.536315918000071 + ], + [ + 104.424316406000059, + 12.534301758000026 + ], + [ + 104.419677734000061, + 12.532470703000058 + ], + [ + 104.423522949000073, + 12.529724121000072 + ], + [ + 104.425903320000032, + 12.527709961000028 + ], + [ + 104.42608642600004, + 12.524719238000046 + ], + [ + 104.428710937000062, + 12.522888184000067 + ], + [ + 104.431518555000082, + 12.521728516000053 + ], + [ + 104.435119629000042, + 12.519714355000076 + ], + [ + 104.438720703000058, + 12.517517090000069 + ], + [ + 104.442871094000054, + 12.51452636700003 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 4.2108650424, + "Shape_Area": 0.57757606169499998, + "ADM1_EN": "Kampong Speu", + "ADM1_PCODE": "KH05", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 104.209899902000075, + 12.03991699200003 + ], + [ + 104.210693359000061, + 12.036926270000038 + ], + [ + 104.212280273000033, + 12.033691406000059 + ], + [ + 104.213317871000072, + 12.030273437000062 + ], + [ + 104.214721680000082, + 12.025878906000059 + ], + [ + 104.216125488000046, + 12.022094727000024 + ], + [ + 104.217895508000083, + 12.018493652000075 + ], + [ + 104.221130371000072, + 12.014282227000024 + ], + [ + 104.22491455100004, + 12.012084961000028 + ], + [ + 104.234130859000061, + 12.010314941000047 + ], + [ + 104.237121582000043, + 12.008300781000059 + ], + [ + 104.242919922000056, + 12.00671386700003 + ], + [ + 104.247680664000086, + 12.005676270000038 + ], + [ + 104.251892090000069, + 12.005310059000067 + ], + [ + 104.254516602000081, + 12.001708984000061 + ], + [ + 104.256530762000068, + 11.998107910000044 + ], + [ + 104.258483887000068, + 11.995727539000029 + ], + [ + 104.258728027000075, + 11.992126465000069 + ], + [ + 104.258911133000083, + 11.988525391000053 + ], + [ + 104.260498047000056, + 11.985290527000075 + ], + [ + 104.262084961000085, + 11.982910156000059 + ], + [ + 104.263122559000067, + 11.979309082000043 + ], + [ + 104.262695312000062, + 11.972290039000029 + ], + [ + 104.262084961000085, + 11.968505859000061 + ], + [ + 104.259277344000054, + 11.961914062000062 + ], + [ + 104.256530762000068, + 11.956726074000073 + ], + [ + 104.255920410000044, + 11.951904297000056 + ], + [ + 104.256286621000072, + 11.94812011700003 + ], + [ + 104.257873535000044, + 11.945495605000076 + ], + [ + 104.259094238000046, + 11.940673828000058 + ], + [ + 104.260681152000075, + 11.936523437000062 + ], + [ + 104.263122559000067, + 11.934082031000059 + ], + [ + 104.264892578000058, + 11.931518555000025 + ], + [ + 104.265502930000082, + 11.928283691000047 + ], + [ + 104.268310547000056, + 11.926330566000047 + ], + [ + 104.26788330100004, + 11.922302246000072 + ], + [ + 104.266296387000068, + 11.919677734000061 + ], + [ + 104.26593017600004, + 11.915893555000025 + ], + [ + 104.267089844000054, + 11.911682129000042 + ], + [ + 104.269470215000069, + 11.909118652000075 + ], + [ + 104.272094727000081, + 11.906311035000044 + ], + [ + 104.275085449000073, + 11.904479980000076 + ], + [ + 104.277282715000069, + 11.902099609000061 + ], + [ + 104.280700684000067, + 11.898925781000059 + ], + [ + 104.285522461000085, + 11.896911621000072 + ], + [ + 104.290893555000082, + 11.894287109000061 + ], + [ + 104.293701172000056, + 11.892700195000032 + ], + [ + 104.296081543000071, + 11.889709473000039 + ], + [ + 104.299682617000087, + 11.887695312000062 + ], + [ + 104.302917480000076, + 11.884521484000061 + ], + [ + 104.306701660000044, + 11.882690430000025 + ], + [ + 104.308288574000073, + 11.879882812000062 + ], + [ + 104.312072754000042, + 11.877319336000028 + ], + [ + 104.312927246000072, + 11.872924805000025 + ], + [ + 104.314086914000086, + 11.869689941000047 + ], + [ + 104.317077637000068, + 11.86608886700003 + ], + [ + 104.318115234000061, + 11.862915039000029 + ], + [ + 104.320129395000038, + 11.860290527000075 + ], + [ + 104.322875977000081, + 11.856872559000067 + ], + [ + 104.32452392600004, + 11.852905273000033 + ], + [ + 104.323913574000073, + 11.848693848000039 + ], + [ + 104.321899414000086, + 11.846130371000072 + ], + [ + 104.322326660000044, + 11.842895508000026 + ], + [ + 104.321105957000043, + 11.840087891000053 + ], + [ + 104.322082520000038, + 11.835876465000069 + ], + [ + 104.323486328000058, + 11.833312988000046 + ], + [ + 104.323303223000039, + 11.829711914000029 + ], + [ + 104.323913574000073, + 11.826904297000056 + ], + [ + 104.325927734000061, + 11.82452392600004 + ], + [ + 104.328918457000043, + 11.822692871000072 + ], + [ + 104.331298828000058, + 11.818908691000047 + ], + [ + 104.331726074000073, + 11.815673828000058 + ], + [ + 104.334106445000032, + 11.813110352000024 + ], + [ + 104.336914062000062, + 11.809692383000026 + ], + [ + 104.339904785000044, + 11.805725098000039 + ], + [ + 104.344116211000085, + 11.803100586000028 + ], + [ + 104.345886230000076, + 11.800292969000054 + ], + [ + 104.348510742000087, + 11.798706055000025 + ], + [ + 104.350891113000046, + 11.796325684000067 + ], + [ + 104.353088379000042, + 11.794494629000042 + ], + [ + 104.354919434000067, + 11.792114258000026 + ], + [ + 104.356872559000067, + 11.789306641000053 + ], + [ + 104.359130859000061, + 11.787475586000028 + ], + [ + 104.361083984000061, + 11.784912109000061 + ], + [ + 104.363708496000072, + 11.780700684000067 + ], + [ + 104.366516113000046, + 11.776306152000075 + ], + [ + 104.370727539000086, + 11.773071289000029 + ], + [ + 104.373107910000044, + 11.770874023000033 + ], + [ + 104.37530517600004, + 11.769104004000042 + ], + [ + 104.378112793000071, + 11.768310547000056 + ], + [ + 104.382690430000082, + 11.769470215000069 + ], + [ + 104.388122559000067, + 11.770080566000047 + ], + [ + 104.392089844000054, + 11.768493652000075 + ], + [ + 104.396301270000038, + 11.767517090000069 + ], + [ + 104.400512695000032, + 11.768127441000047 + ], + [ + 104.403320312000062, + 11.766296387000068 + ], + [ + 104.406677246000072, + 11.766113281000059 + ], + [ + 104.409912109000061, + 11.763305664000029 + ], + [ + 104.413330078000058, + 11.764099121000072 + ], + [ + 104.415893555000082, + 11.762512207000043 + ], + [ + 104.419677734000061, + 11.760925293000071 + ], + [ + 104.423706055000082, + 11.760498047000056 + ], + [ + 104.427490234000061, + 11.760314941000047 + ], + [ + 104.431091309000067, + 11.759521484000061 + ], + [ + 104.434509277000075, + 11.758911133000026 + ], + [ + 104.438720703000058, + 11.759521484000061 + ], + [ + 104.442077637000068, + 11.759277344000054 + ], + [ + 104.445129395000038, + 11.758728027000075 + ], + [ + 104.449096680000082, + 11.757873535000044 + ], + [ + 104.454284668000071, + 11.75671386700003 + ], + [ + 104.458496094000054, + 11.754516602000024 + ], + [ + 104.462524414000086, + 11.755493164000029 + ], + [ + 104.467895508000083, + 11.753906250000057 + ], + [ + 104.470886230000076, + 11.749694824000073 + ], + [ + 104.472900391000053, + 11.747070312000062 + ], + [ + 104.474121094000054, + 11.744323730000076 + ], + [ + 104.477478027000075, + 11.742919922000056 + ], + [ + 104.481506348000039, + 11.741516113000046 + ], + [ + 104.485290527000075, + 11.738708496000072 + ], + [ + 104.488525391000053, + 11.735717773000033 + ], + [ + 104.492126465000069, + 11.735473633000026 + ], + [ + 104.494323730000076, + 11.737670898000033 + ], + [ + 104.497924805000082, + 11.737670898000033 + ], + [ + 104.501525879000042, + 11.737304687000062 + ], + [ + 104.505310059000067, + 11.737915039000029 + ], + [ + 104.50811767600004, + 11.736877441000047 + ], + [ + 104.511474609000061, + 11.735900879000042 + ], + [ + 104.515075684000067, + 11.734497070000032 + ], + [ + 104.518676758000083, + 11.735717773000033 + ], + [ + 104.522888184000067, + 11.736511230000076 + ], + [ + 104.526306152000075, + 11.737487793000071 + ], + [ + 104.530273437000062, + 11.738525391000053 + ], + [ + 104.533874512000068, + 11.737915039000029 + ], + [ + 104.538330078000058, + 11.741271973000039 + ], + [ + 104.542297363000046, + 11.741516113000046 + ], + [ + 104.545288086000085, + 11.740722656000059 + ], + [ + 104.548095703000058, + 11.742309570000032 + ], + [ + 104.551330566000047, + 11.743713379000042 + ], + [ + 104.553527832000043, + 11.748474121000072 + ], + [ + 104.557312012000068, + 11.751281738000046 + ], + [ + 104.560729980000076, + 11.754272461000028 + ], + [ + 104.563903809000067, + 11.756286621000072 + ], + [ + 104.564880371000072, + 11.759521484000061 + ], + [ + 104.567321777000075, + 11.762329102000024 + ], + [ + 104.571899414000086, + 11.765075684000067 + ], + [ + 104.575073242000087, + 11.766906738000046 + ], + [ + 104.57647705100004, + 11.770874023000033 + ], + [ + 104.579895020000038, + 11.774475098000039 + ], + [ + 104.583923340000069, + 11.776672363000046 + ], + [ + 104.587097168000071, + 11.779296875000057 + ], + [ + 104.589111328000058, + 11.783325195000032 + ], + [ + 104.593078613000046, + 11.786315918000071 + ], + [ + 104.595092773000033, + 11.790893555000025 + ], + [ + 104.599121094000054, + 11.790527344000054 + ], + [ + 104.604309082000043, + 11.792114258000026 + ], + [ + 104.608520508000083, + 11.793701172000056 + ], + [ + 104.611694336000085, + 11.796691895000038 + ], + [ + 104.614929199000073, + 11.797912598000039 + ], + [ + 104.617675781000059, + 11.79968261700003 + ], + [ + 104.621704102000081, + 11.803100586000028 + ], + [ + 104.624877930000082, + 11.806274414000029 + ], + [ + 104.628295898000033, + 11.806518555000025 + ], + [ + 104.632324219000054, + 11.807678223000039 + ], + [ + 104.637878418000071, + 11.807312012000068 + ], + [ + 104.641113281000059, + 11.806091309000067 + ], + [ + 104.644287109000061, + 11.807312012000068 + ], + [ + 104.648315430000082, + 11.808715820000032 + ], + [ + 104.652282715000069, + 11.810729980000076 + ], + [ + 104.655883789000086, + 11.809326172000056 + ], + [ + 104.660095215000069, + 11.809082031000059 + ], + [ + 104.662902832000043, + 11.808105469000054 + ], + [ + 104.666076660000044, + 11.807922363000046 + ], + [ + 104.669494629000042, + 11.806701660000044 + ], + [ + 104.672729492000087, + 11.805114746000072 + ], + [ + 104.677917480000076, + 11.80749511700003 + ], + [ + 104.682128906000059, + 11.807678223000039 + ], + [ + 104.685485840000069, + 11.810119629000042 + ], + [ + 104.689514160000044, + 11.814270020000038 + ], + [ + 104.693481445000089, + 11.813476562000062 + ], + [ + 104.696899414000086, + 11.811279297000056 + ], + [ + 104.700683594000054, + 11.810119629000042 + ], + [ + 104.704284668000071, + 11.809692383000026 + ], + [ + 104.707519531000059, + 11.810119629000042 + ], + [ + 104.710510254000042, + 11.810729980000076 + ], + [ + 104.712890625000057, + 11.812927246000072 + ], + [ + 104.715698242000087, + 11.814514160000044 + ], + [ + 104.719482422000056, + 11.813903809000067 + ], + [ + 104.722290039000086, + 11.814880371000072 + ], + [ + 104.725280762000068, + 11.816894531000059 + ], + [ + 104.725280762000068, + 11.820495605000076 + ], + [ + 104.726074219000054, + 11.823730469000054 + ], + [ + 104.731689453000058, + 11.824890137000068 + ], + [ + 104.735107422000056, + 11.827270508000026 + ], + [ + 104.739318848000039, + 11.828491211000028 + ], + [ + 104.740722656000059, + 11.824707031000059 + ], + [ + 104.744323730000076, + 11.823303223000039 + ], + [ + 104.748107910000044, + 11.822326660000044 + ], + [ + 104.751708984000061, + 11.821289062000062 + ], + [ + 104.751098633000083, + 11.815490723000039 + ], + [ + 104.751281738000046, + 11.810485840000069 + ], + [ + 104.751525879000042, + 11.807128906000059 + ], + [ + 104.751525879000042, + 11.803710937000062 + ], + [ + 104.751098633000083, + 11.800476074000073 + ], + [ + 104.749694824000073, + 11.796081543000071 + ], + [ + 104.748107910000044, + 11.791687012000068 + ], + [ + 104.746887207000043, + 11.788879395000038 + ], + [ + 104.745483398000033, + 11.785888672000056 + ], + [ + 104.734130859000061, + 11.751892090000069 + ], + [ + 104.730895996000072, + 11.741882324000073 + ], + [ + 104.727478027000075, + 11.73272705100004 + ], + [ + 104.725097656000059, + 11.728515625000057 + ], + [ + 104.722473145000038, + 11.721496582000043 + ], + [ + 104.720092773000033, + 11.716125488000046 + ], + [ + 104.718505859000061, + 11.712707520000038 + ], + [ + 104.715515137000068, + 11.708129883000026 + ], + [ + 104.708129883000083, + 11.696716309000067 + ], + [ + 104.701721191000047, + 11.685485840000069 + ], + [ + 104.698303223000039, + 11.677917480000076 + ], + [ + 104.695678711000085, + 11.670898437000062 + ], + [ + 104.693481445000089, + 11.665710449000073 + ], + [ + 104.693481445000089, + 11.660705566000047 + ], + [ + 104.691528320000089, + 11.654724121000072 + ], + [ + 104.687683105000076, + 11.645507812000062 + ], + [ + 104.686523437000062, + 11.641296387000068 + ], + [ + 104.686096191000047, + 11.636901855000076 + ], + [ + 104.686279297000056, + 11.632690430000025 + ], + [ + 104.685119629000042, + 11.629882812000062 + ], + [ + 104.682128906000059, + 11.622680664000029 + ], + [ + 104.681274414000086, + 11.617126465000069 + ], + [ + 104.680114746000072, + 11.610473633000026 + ], + [ + 104.678100586000085, + 11.601501465000069 + ], + [ + 104.678710937000062, + 11.596679687000062 + ], + [ + 104.677307129000042, + 11.586486816000047 + ], + [ + 104.677490234000061, + 11.580078125000057 + ], + [ + 104.677917480000076, + 11.572509766000053 + ], + [ + 104.678527832000043, + 11.56671142600004 + ], + [ + 104.678710937000062, + 11.560729980000076 + ], + [ + 104.677490234000061, + 11.556884766000053 + ], + [ + 104.67608642600004, + 11.551879883000026 + ], + [ + 104.675903320000089, + 11.548889160000044 + ], + [ + 104.675903320000089, + 11.544677734000061 + ], + [ + 104.673706055000082, + 11.540283203000058 + ], + [ + 104.671691895000038, + 11.534118652000075 + ], + [ + 104.670288086000085, + 11.528503418000071 + ], + [ + 104.668884277000075, + 11.522521973000039 + ], + [ + 104.667724609000061, + 11.517517090000069 + ], + [ + 104.666503906000059, + 11.512512207000043 + ], + [ + 104.665527344000054, + 11.507324219000054 + ], + [ + 104.665100098000039, + 11.502929687000062 + ], + [ + 104.663330078000058, + 11.49890136700003 + ], + [ + 104.661926270000038, + 11.494873047000056 + ], + [ + 104.662719727000081, + 11.490905762000068 + ], + [ + 104.662719727000081, + 11.485107422000056 + ], + [ + 104.662109375000057, + 11.480285645000038 + ], + [ + 104.662109375000057, + 11.475891113000046 + ], + [ + 104.661315918000071, + 11.471313477000024 + ], + [ + 104.660278320000089, + 11.466125488000046 + ], + [ + 104.659118652000075, + 11.460327148000033 + ], + [ + 104.658325195000089, + 11.455078125000057 + ], + [ + 104.656494141000053, + 11.44952392600004 + ], + [ + 104.656921387000068, + 11.445129395000038 + ], + [ + 104.656311035000044, + 11.441284180000025 + ], + [ + 104.656494141000053, + 11.435485840000069 + ], + [ + 104.661499023000033, + 11.434326172000056 + ], + [ + 104.664306641000053, + 11.431274414000029 + ], + [ + 104.667297363000046, + 11.428527832000043 + ], + [ + 104.671325684000067, + 11.426879883000026 + ], + [ + 104.674072266000053, + 11.425903320000032 + ], + [ + 104.675903320000089, + 11.423522949000073 + ], + [ + 104.678710937000062, + 11.421875 + ], + [ + 104.682312012000068, + 11.423706055000025 + ], + [ + 104.68389892600004, + 11.427673340000069 + ], + [ + 104.687072754000042, + 11.429870605000076 + ], + [ + 104.687927246000072, + 11.433105469000054 + ], + [ + 104.689697266000053, + 11.436279297000056 + ], + [ + 104.692871094000054, + 11.436279297000056 + ], + [ + 104.695922852000081, + 11.434692383000026 + ], + [ + 104.69952392600004, + 11.430297852000024 + ], + [ + 104.704528809000067, + 11.429504395000038 + ], + [ + 104.708129883000083, + 11.430480957000043 + ], + [ + 104.711730957000043, + 11.433105469000054 + ], + [ + 104.715270996000072, + 11.433471680000025 + ], + [ + 104.717712402000075, + 11.436096191000047 + ], + [ + 104.719909668000071, + 11.439086914000029 + ], + [ + 104.722473145000038, + 11.437927246000072 + ], + [ + 104.724121094000054, + 11.434692383000026 + ], + [ + 104.728515625000057, + 11.436706543000071 + ], + [ + 104.731079102000081, + 11.434326172000056 + ], + [ + 104.734130859000061, + 11.432312012000068 + ], + [ + 104.736328125000057, + 11.428283691000047 + ], + [ + 104.739501953000058, + 11.428710937000062 + ], + [ + 104.741516113000046, + 11.426513672000056 + ], + [ + 104.745727539000086, + 11.425720215000069 + ], + [ + 104.749877930000082, + 11.424926758000026 + ], + [ + 104.753112793000071, + 11.427673340000069 + ], + [ + 104.757873535000044, + 11.42608642600004 + ], + [ + 104.761291504000042, + 11.427307129000042 + ], + [ + 104.764282227000081, + 11.426330566000047 + ], + [ + 104.763122559000067, + 11.423706055000025 + ], + [ + 104.767517090000069, + 11.421691895000038 + ], + [ + 104.770874023000033, + 11.424926758000026 + ], + [ + 104.774475098000039, + 11.429077148000033 + ], + [ + 104.774475098000039, + 11.424926758000026 + ], + [ + 104.774475098000039, + 11.421691895000038 + ], + [ + 104.779113770000038, + 11.422119141000053 + ], + [ + 104.782287598000039, + 11.421691895000038 + ], + [ + 104.780883789000086, + 11.417724609000061 + ], + [ + 104.784301758000083, + 11.416076660000044 + ], + [ + 104.785888672000056, + 11.419494629000042 + ], + [ + 104.786926270000038, + 11.423706055000025 + ], + [ + 104.791687012000068, + 11.423095703000058 + ], + [ + 104.788330078000058, + 11.410095215000069 + ], + [ + 104.783691406000059, + 11.405517578000058 + ], + [ + 104.765075684000067, + 11.386474609000061 + ], + [ + 104.761901855000076, + 11.380676270000038 + ], + [ + 104.754882812000062, + 11.37530517600004 + ], + [ + 104.750488281000059, + 11.370727539000029 + ], + [ + 104.746704102000081, + 11.366699219000054 + ], + [ + 104.737915039000086, + 11.357482910000044 + ], + [ + 104.735717773000033, + 11.354492187000062 + ], + [ + 104.732482910000044, + 11.34991455100004 + ], + [ + 104.729492187000062, + 11.346679687000062 + ], + [ + 104.726684570000089, + 11.343078613000046 + ], + [ + 104.723693848000039, + 11.339111328000058 + ], + [ + 104.719482422000056, + 11.333679199000073 + ], + [ + 104.717529297000056, + 11.330688477000024 + ], + [ + 104.715087891000053, + 11.327697754000042 + ], + [ + 104.712524414000086, + 11.32452392600004 + ], + [ + 104.710876465000069, + 11.321289062000062 + ], + [ + 104.708679199000073, + 11.306884766000053 + ], + [ + 104.706726074000073, + 11.297912598000039 + ], + [ + 104.706909180000082, + 11.289306641000053 + ], + [ + 104.707275391000053, + 11.283691406000059 + ], + [ + 104.702270508000083, + 11.25671386700003 + ], + [ + 104.701293945000089, + 11.250671387000068 + ], + [ + 104.70147705100004, + 11.241271973000039 + ], + [ + 104.698486328000058, + 11.236511230000076 + ], + [ + 104.696289062000062, + 11.232910156000059 + ], + [ + 104.696899414000086, + 11.228271484000061 + ], + [ + 104.695678711000085, + 11.222473145000038 + ], + [ + 104.694091797000056, + 11.214477539000029 + ], + [ + 104.692687988000046, + 11.206909180000025 + ], + [ + 104.691284180000082, + 11.197326660000044 + ], + [ + 104.689697266000053, + 11.188476562000062 + ], + [ + 104.690124512000068, + 11.183715820000032 + ], + [ + 104.689514160000044, + 11.180725098000039 + ], + [ + 104.685913086000085, + 11.170898437000062 + ], + [ + 104.685302734000061, + 11.166076660000044 + ], + [ + 104.684692383000083, + 11.159912109000061 + ], + [ + 104.684326172000056, + 11.155883789000029 + ], + [ + 104.685485840000069, + 11.142517090000069 + ], + [ + 104.686889648000033, + 11.131286621000072 + ], + [ + 104.687316895000038, + 11.127685547000056 + ], + [ + 104.687927246000072, + 11.123474121000072 + ], + [ + 104.686706543000071, + 11.115722656000059 + ], + [ + 104.686096191000047, + 11.10772705100004 + ], + [ + 104.685485840000069, + 11.096923828000058 + ], + [ + 104.686279297000056, + 11.087524414000029 + ], + [ + 104.682312012000068, + 11.09069824200003 + ], + [ + 104.678283691000047, + 11.091491699000073 + ], + [ + 104.674682617000087, + 11.090270996000072 + ], + [ + 104.671325684000067, + 11.087280273000033 + ], + [ + 104.66827392600004, + 11.086120605000076 + ], + [ + 104.663513184000067, + 11.085510254000042 + ], + [ + 104.657714844000054, + 11.084472656000059 + ], + [ + 104.653930664000086, + 11.083129883000026 + ], + [ + 104.651123047000056, + 11.083679199000073 + ], + [ + 104.648071289000086, + 11.083312988000046 + ], + [ + 104.644470215000069, + 11.084716797000056 + ], + [ + 104.641296387000068, + 11.082702637000068 + ], + [ + 104.639282227000081, + 11.079284668000071 + ], + [ + 104.635681152000075, + 11.078125 + ], + [ + 104.632690430000082, + 11.078674316000047 + ], + [ + 104.629516602000081, + 11.079895020000038 + ], + [ + 104.627319336000085, + 11.082275391000053 + ], + [ + 104.622497559000067, + 11.08428955100004 + ], + [ + 104.618530273000033, + 11.08428955100004 + ], + [ + 104.615722656000059, + 11.085083008000026 + ], + [ + 104.611694336000085, + 11.085693359000061 + ], + [ + 104.606506348000039, + 11.085510254000042 + ], + [ + 104.602905273000033, + 11.086914062000062 + ], + [ + 104.596679687000062, + 11.087890625000057 + ], + [ + 104.59210205100004, + 11.089477539000029 + ], + [ + 104.588684082000043, + 11.091308594000054 + ], + [ + 104.585083008000083, + 11.093505859000061 + ], + [ + 104.581298828000058, + 11.095092773000033 + ], + [ + 104.578674316000047, + 11.096313477000024 + ], + [ + 104.575500488000046, + 11.097290039000029 + ], + [ + 104.572082520000038, + 11.097900391000053 + ], + [ + 104.568115234000061, + 11.098327637000068 + ], + [ + 104.564697266000053, + 11.098876953000058 + ], + [ + 104.561523437000062, + 11.100524902000075 + ], + [ + 104.558288574000073, + 11.100097656000059 + ], + [ + 104.554687500000057, + 11.101684570000032 + ], + [ + 104.550109863000046, + 11.103698730000076 + ], + [ + 104.546081543000071, + 11.104675293000071 + ], + [ + 104.542297363000046, + 11.105285645000038 + ], + [ + 104.537902832000043, + 11.107482910000044 + ], + [ + 104.533874512000068, + 11.110900879000042 + ], + [ + 104.529296875000057, + 11.112487793000071 + ], + [ + 104.526672363000046, + 11.115478516000053 + ], + [ + 104.524475098000039, + 11.117919922000056 + ], + [ + 104.521484375000057, + 11.119873047000056 + ], + [ + 104.518493652000075, + 11.123107910000044 + ], + [ + 104.516479492000087, + 11.126098633000026 + ], + [ + 104.515502930000082, + 11.129699707000043 + ], + [ + 104.512512207000043, + 11.131286621000072 + ], + [ + 104.509277344000054, + 11.131530762000068 + ], + [ + 104.505920410000044, + 11.129882812000062 + ], + [ + 104.503112793000071, + 11.127685547000056 + ], + [ + 104.500488281000059, + 11.126098633000026 + ], + [ + 104.495483398000033, + 11.124694824000073 + ], + [ + 104.490112305000082, + 11.124084473000039 + ], + [ + 104.485290527000075, + 11.123718262000068 + ], + [ + 104.481872559000067, + 11.124084473000039 + ], + [ + 104.478698730000076, + 11.124511719000054 + ], + [ + 104.474487305000082, + 11.124511719000054 + ], + [ + 104.470703125000057, + 11.124877930000025 + ], + [ + 104.467285156000059, + 11.126098633000026 + ], + [ + 104.464721680000082, + 11.124877930000025 + ], + [ + 104.461730957000043, + 11.124084473000039 + ], + [ + 104.458129883000083, + 11.124877930000025 + ], + [ + 104.454284668000071, + 11.126892090000069 + ], + [ + 104.44952392600004, + 11.128479004000042 + ], + [ + 104.445678711000085, + 11.130493164000029 + ], + [ + 104.442871094000054, + 11.132873535000044 + ], + [ + 104.439697266000053, + 11.131896973000039 + ], + [ + 104.436279297000056, + 11.130920410000044 + ], + [ + 104.432312012000068, + 11.128479004000042 + ], + [ + 104.428527832000043, + 11.128479004000042 + ], + [ + 104.425109863000046, + 11.130493164000029 + ], + [ + 104.421875, + 11.132080078000058 + ], + [ + 104.417297363000046, + 11.132507324000073 + ], + [ + 104.413085937000062, + 11.134887695000032 + ], + [ + 104.410522461000085, + 11.136901855000076 + ], + [ + 104.407470703000058, + 11.137878418000071 + ], + [ + 104.405273437000062, + 11.141113281000059 + ], + [ + 104.402709961000085, + 11.14288330100004 + ], + [ + 104.400085449000073, + 11.145690918000071 + ], + [ + 104.396911621000072, + 11.147705078000058 + ], + [ + 104.393493652000075, + 11.143127441000047 + ], + [ + 104.390075684000067, + 11.141113281000059 + ], + [ + 104.388488770000038, + 11.137878418000071 + ], + [ + 104.384521484000061, + 11.137084961000028 + ], + [ + 104.379699707000043, + 11.136291504000042 + ], + [ + 104.374328613000046, + 11.135498047000056 + ], + [ + 104.370117187000062, + 11.13507080100004 + ], + [ + 104.367919922000056, + 11.132873535000044 + ], + [ + 104.365722656000059, + 11.13507080100004 + ], + [ + 104.362304687000062, + 11.135925293000071 + ], + [ + 104.358520508000083, + 11.136291504000042 + ], + [ + 104.354492187000062, + 11.137695312000062 + ], + [ + 104.350280762000068, + 11.137695312000062 + ], + [ + 104.346923828000058, + 11.139099121000072 + ], + [ + 104.342712402000075, + 11.139709473000039 + ], + [ + 104.338317871000072, + 11.137695312000062 + ], + [ + 104.334899902000075, + 11.13507080100004 + ], + [ + 104.331726074000073, + 11.132080078000058 + ], + [ + 104.329284668000071, + 11.127929687000062 + ], + [ + 104.329101562000062, + 11.124511719000054 + ], + [ + 104.326904297000056, + 11.121093750000057 + ], + [ + 104.32452392600004, + 11.11749267600004 + ], + [ + 104.321105957000043, + 11.115722656000059 + ], + [ + 104.318298340000069, + 11.116271973000039 + ], + [ + 104.316101074000073, + 11.113708496000072 + ], + [ + 104.314514160000044, + 11.110290527000075 + ], + [ + 104.312927246000072, + 11.106506348000039 + ], + [ + 104.308288574000073, + 11.103698730000076 + ], + [ + 104.304504395000038, + 11.103515625000057 + ], + [ + 104.30108642600004, + 11.103881836000028 + ], + [ + 104.297485352000081, + 11.104919434000067 + ], + [ + 104.293090820000032, + 11.104492187000062 + ], + [ + 104.289306641000053, + 11.103088379000042 + ], + [ + 104.284484863000046, + 11.102905273000033 + ], + [ + 104.278503418000071, + 11.101928711000028 + ], + [ + 104.273681641000053, + 11.099304199000073 + ], + [ + 104.269287109000061, + 11.097473145000038 + ], + [ + 104.265686035000044, + 11.097717285000044 + ], + [ + 104.261108398000033, + 11.096679687000062 + ], + [ + 104.253112793000071, + 11.094726562000062 + ], + [ + 104.246276855000076, + 11.092895508000026 + ], + [ + 104.242919922000056, + 11.093322754000042 + ], + [ + 104.238708496000072, + 11.093505859000061 + ], + [ + 104.235107422000056, + 11.093505859000061 + ], + [ + 104.231323242000087, + 11.093505859000061 + ], + [ + 104.225524902000075, + 11.093688965000069 + ], + [ + 104.221313477000081, + 11.093688965000069 + ], + [ + 104.215881348000039, + 11.094116211000028 + ], + [ + 104.211486816000047, + 11.094909668000071 + ], + [ + 104.208312988000046, + 11.096130371000072 + ], + [ + 104.204101562000062, + 11.097717285000044 + ], + [ + 104.199707031000059, + 11.098693848000039 + ], + [ + 104.196472168000071, + 11.100891113000046 + ], + [ + 104.192077637000068, + 11.103515625000057 + ], + [ + 104.188720703000058, + 11.106079102000024 + ], + [ + 104.186096191000047, + 11.10827636700003 + ], + [ + 104.18389892600004, + 11.110900879000042 + ], + [ + 104.181274414000086, + 11.113891602000024 + ], + [ + 104.176879883000083, + 11.119506836000028 + ], + [ + 104.174499512000068, + 11.122070312000062 + ], + [ + 104.172485352000081, + 11.124694824000073 + ], + [ + 104.170471191000047, + 11.127929687000062 + ], + [ + 104.16827392600004, + 11.13311767600004 + ], + [ + 104.166076660000044, + 11.137329102000024 + ], + [ + 104.165100098000039, + 11.140319824000073 + ], + [ + 104.163513184000067, + 11.143493652000075 + ], + [ + 104.161071777000075, + 11.146911621000072 + ], + [ + 104.157104492000087, + 11.14929199200003 + ], + [ + 104.152893066000047, + 11.150878906000059 + ], + [ + 104.147888184000067, + 11.152709961000028 + ], + [ + 104.143920898000033, + 11.153686523000033 + ], + [ + 104.139099121000072, + 11.155273437000062 + ], + [ + 104.133300781000059, + 11.157470703000058 + ], + [ + 104.127685547000056, + 11.159301758000026 + ], + [ + 104.122314453000058, + 11.160705566000047 + ], + [ + 104.116699219000054, + 11.162109375000057 + ], + [ + 104.110290527000075, + 11.163879395000038 + ], + [ + 104.105285645000038, + 11.165527344000054 + ], + [ + 104.099670410000044, + 11.167114258000026 + ], + [ + 104.093078613000046, + 11.168701172000056 + ], + [ + 104.087890625000057, + 11.169921875000057 + ], + [ + 104.083496094000054, + 11.170898437000062 + ], + [ + 104.079284668000071, + 11.171691895000038 + ], + [ + 104.074707031000059, + 11.172302246000072 + ], + [ + 104.070312500000057, + 11.172302246000072 + ], + [ + 104.065124512000068, + 11.171875 + ], + [ + 104.060729980000076, + 11.171325684000067 + ], + [ + 104.056701660000044, + 11.171081543000071 + ], + [ + 104.052124023000033, + 11.171081543000071 + ], + [ + 104.047729492000087, + 11.173095703000058 + ], + [ + 104.04327392600004, + 11.175109863000046 + ], + [ + 104.040100098000039, + 11.177124023000033 + ], + [ + 104.037292480000076, + 11.179870605000076 + ], + [ + 104.038330078000058, + 11.182678223000039 + ], + [ + 104.041076660000044, + 11.185119629000042 + ], + [ + 104.04327392600004, + 11.188110352000024 + ], + [ + 104.041687012000068, + 11.193115234000061 + ], + [ + 104.040710449000073, + 11.197082520000038 + ], + [ + 104.040710449000073, + 11.200500488000046 + ], + [ + 104.040710449000073, + 11.204895020000038 + ], + [ + 104.039306641000053, + 11.208129883000026 + ], + [ + 104.035522461000085, + 11.207519531000059 + ], + [ + 104.031677246000072, + 11.206909180000025 + ], + [ + 104.026489258000083, + 11.206298828000058 + ], + [ + 104.021728516000053, + 11.205078125000057 + ], + [ + 104.021118164000086, + 11.20928955100004 + ], + [ + 104.022705078000058, + 11.213317871000072 + ], + [ + 104.025512695000032, + 11.216491699000073 + ], + [ + 104.026672363000046, + 11.220703125000057 + ], + [ + 104.027282715000069, + 11.225891113000046 + ], + [ + 104.027099609000061, + 11.229675293000071 + ], + [ + 104.029113770000038, + 11.233703613000046 + ], + [ + 104.031921387000068, + 11.237121582000043 + ], + [ + 104.032104492000087, + 11.240112305000025 + ], + [ + 104.034118652000075, + 11.243530273000033 + ], + [ + 104.034912109000061, + 11.246520996000072 + ], + [ + 104.036682129000042, + 11.249511719000054 + ], + [ + 104.040893555000082, + 11.252319336000028 + ], + [ + 104.04327392600004, + 11.256286621000072 + ], + [ + 104.045471191000047, + 11.259704590000069 + ], + [ + 104.048095703000058, + 11.263671875000057 + ], + [ + 104.050720215000069, + 11.267700195000032 + ], + [ + 104.051513672000056, + 11.271484375000057 + ], + [ + 104.05108642600004, + 11.275085449000073 + ], + [ + 104.049316406000059, + 11.277709961000028 + ], + [ + 104.047729492000087, + 11.282287598000039 + ], + [ + 104.047485352000081, + 11.286315918000071 + ], + [ + 104.046691895000038, + 11.290283203000058 + ], + [ + 104.045898437000062, + 11.294677734000061 + ], + [ + 104.045471191000047, + 11.298095703000058 + ], + [ + 104.044921875000057, + 11.300903320000032 + ], + [ + 104.044494629000042, + 11.304504395000038 + ], + [ + 104.043090820000032, + 11.307128906000059 + ], + [ + 104.043518066000047, + 11.310302734000061 + ], + [ + 104.044494629000042, + 11.314086914000029 + ], + [ + 104.043518066000047, + 11.318481445000032 + ], + [ + 104.041076660000044, + 11.321899414000029 + ], + [ + 104.040283203000058, + 11.32507324200003 + ], + [ + 104.040283203000058, + 11.328674316000047 + ], + [ + 104.040710449000073, + 11.332092285000044 + ], + [ + 104.042114258000083, + 11.335510254000042 + ], + [ + 104.044128418000071, + 11.338928223000039 + ], + [ + 104.045104980000076, + 11.341674805000025 + ], + [ + 104.046691895000038, + 11.344726562000062 + ], + [ + 104.048522949000073, + 11.351501465000069 + ], + [ + 104.053100586000085, + 11.352294922000056 + ], + [ + 104.057678223000039, + 11.351318359000061 + ], + [ + 104.060119629000042, + 11.353698730000076 + ], + [ + 104.059692383000083, + 11.35772705100004 + ], + [ + 104.060485840000069, + 11.360900879000042 + ], + [ + 104.061096191000047, + 11.364929199000073 + ], + [ + 104.061096191000047, + 11.369873047000056 + ], + [ + 104.057312012000068, + 11.373107910000044 + ], + [ + 104.054504395000038, + 11.375915527000075 + ], + [ + 104.052917480000076, + 11.379272461000028 + ], + [ + 104.05108642600004, + 11.383300781000059 + ], + [ + 104.050292969000054, + 11.386291504000042 + ], + [ + 104.050903320000032, + 11.389892578000058 + ], + [ + 104.051513672000056, + 11.393127441000047 + ], + [ + 104.052673340000069, + 11.396728516000053 + ], + [ + 104.053283691000047, + 11.400512695000032 + ], + [ + 104.051513672000056, + 11.404907227000024 + ], + [ + 104.047119141000053, + 11.409301758000026 + ], + [ + 104.045471191000047, + 11.412109375000057 + ], + [ + 104.044677734000061, + 11.41491699200003 + ], + [ + 104.043884277000075, + 11.418090820000032 + ], + [ + 104.044128418000071, + 11.422912598000039 + ], + [ + 104.044494629000042, + 11.427917480000076 + ], + [ + 104.041870117000087, + 11.432128906000059 + ], + [ + 104.041870117000087, + 11.435913086000028 + ], + [ + 104.044677734000061, + 11.438903809000067 + ], + [ + 104.047302246000072, + 11.441894531000059 + ], + [ + 104.047729492000087, + 11.445129395000038 + ], + [ + 104.048889160000044, + 11.448913574000073 + ], + [ + 104.051879883000083, + 11.450927734000061 + ], + [ + 104.056884766000053, + 11.452880859000061 + ], + [ + 104.061279297000056, + 11.454101562000062 + ], + [ + 104.064270020000038, + 11.457519531000059 + ], + [ + 104.064514160000044, + 11.462097168000071 + ], + [ + 104.063720703000058, + 11.466674805000025 + ], + [ + 104.062927246000072, + 11.471496582000043 + ], + [ + 104.061279297000056, + 11.476318359000061 + ], + [ + 104.060119629000042, + 11.480712891000053 + ], + [ + 104.058471680000082, + 11.485473633000026 + ], + [ + 104.056518555000082, + 11.489929199000073 + ], + [ + 104.054321289000086, + 11.495117187000062 + ], + [ + 104.049926758000083, + 11.497070312000062 + ], + [ + 104.046508789000086, + 11.497924805000025 + ], + [ + 104.043701172000056, + 11.496520996000072 + ], + [ + 104.039916992000087, + 11.494873047000056 + ], + [ + 104.035522461000085, + 11.496704102000024 + ], + [ + 104.031921387000068, + 11.499511719000054 + ], + [ + 104.028686523000033, + 11.500488281000059 + ], + [ + 104.025329590000069, + 11.501525879000042 + ], + [ + 104.023681641000053, + 11.505920410000044 + ], + [ + 104.021484375000057, + 11.509521484000061 + ], + [ + 104.020324707000043, + 11.512329102000024 + ], + [ + 104.017272949000073, + 11.516723633000026 + ], + [ + 104.014526367000087, + 11.519897461000028 + ], + [ + 104.011718750000057, + 11.521911621000072 + ], + [ + 104.008728027000075, + 11.524108887000068 + ], + [ + 104.006530762000068, + 11.526123047000056 + ], + [ + 104.001708984000061, + 11.529907227000024 + ], + [ + 103.996704102000081, + 11.530090332000043 + ], + [ + 103.992919922000056, + 11.528076172000056 + ], + [ + 103.988708496000072, + 11.526489258000026 + ], + [ + 103.985900879000042, + 11.524902344000054 + ], + [ + 103.982116699000073, + 11.523925781000059 + ], + [ + 103.979125977000081, + 11.526672363000046 + ], + [ + 103.975708008000083, + 11.526489258000026 + ], + [ + 103.972717285000044, + 11.525085449000073 + ], + [ + 103.969116211000085, + 11.524475098000039 + ], + [ + 103.965881348000039, + 11.522277832000043 + ], + [ + 103.962524414000086, + 11.520324707000043 + ], + [ + 103.958129883000083, + 11.517272949000073 + ], + [ + 103.953491211000085, + 11.518676758000026 + ], + [ + 103.949890137000068, + 11.518310547000056 + ], + [ + 103.945678711000085, + 11.516906738000046 + ], + [ + 103.941894531000059, + 11.516296387000068 + ], + [ + 103.9375, + 11.517089844000054 + ], + [ + 103.933471680000082, + 11.521301270000038 + ], + [ + 103.931701660000044, + 11.524902344000054 + ], + [ + 103.930725098000039, + 11.528503418000071 + ], + [ + 103.928894043000071, + 11.532897949000073 + ], + [ + 103.925292969000054, + 11.535888672000056 + ], + [ + 103.921691895000038, + 11.535278320000032 + ], + [ + 103.917724609000061, + 11.537109375000057 + ], + [ + 103.917114258000083, + 11.541076660000044 + ], + [ + 103.916687012000068, + 11.544494629000042 + ], + [ + 103.915710449000073, + 11.548522949000073 + ], + [ + 103.913696289000086, + 11.551513672000056 + ], + [ + 103.910705566000047, + 11.553710937000062 + ], + [ + 103.907714844000054, + 11.554870605000076 + ], + [ + 103.904907227000081, + 11.556091309000067 + ], + [ + 103.901489258000083, + 11.556701660000044 + ], + [ + 103.897277832000043, + 11.557128906000059 + ], + [ + 103.893676758000083, + 11.55749511700003 + ], + [ + 103.890686035000044, + 11.557678223000039 + ], + [ + 103.887695312000062, + 11.558715820000032 + ], + [ + 103.886108398000033, + 11.561279297000056 + ], + [ + 103.884277344000054, + 11.564514160000044 + ], + [ + 103.881713867000087, + 11.567077637000068 + ], + [ + 103.877319336000085, + 11.56671142600004 + ], + [ + 103.873901367000087, + 11.567687988000046 + ], + [ + 103.871093750000057, + 11.569274902000075 + ], + [ + 103.86749267600004, + 11.571105957000043 + ], + [ + 103.864501953000058, + 11.573303223000039 + ], + [ + 103.861877441000047, + 11.57452392600004 + ], + [ + 103.863281250000057, + 11.578918457000043 + ], + [ + 103.860900879000042, + 11.581115723000039 + ], + [ + 103.858520508000083, + 11.583923340000069 + ], + [ + 103.855529785000044, + 11.585510254000042 + ], + [ + 103.852111816000047, + 11.588684082000043 + ], + [ + 103.847473145000038, + 11.590270996000072 + ], + [ + 103.844482422000056, + 11.591308594000054 + ], + [ + 103.842529297000056, + 11.594116211000028 + ], + [ + 103.838684082000043, + 11.596130371000072 + ], + [ + 103.835693359000061, + 11.601074219000054 + ], + [ + 103.833679199000073, + 11.604492187000062 + ], + [ + 103.832702637000068, + 11.607482910000044 + ], + [ + 103.828491211000085, + 11.609313965000069 + ], + [ + 103.826110840000069, + 11.611083984000061 + ], + [ + 103.823913574000073, + 11.613708496000072 + ], + [ + 103.821289062000062, + 11.615722656000059 + ], + [ + 103.818908691000047, + 11.618103027000075 + ], + [ + 103.813293457000043, + 11.620117187000062 + ], + [ + 103.809082031000059, + 11.621704102000024 + ], + [ + 103.806091309000067, + 11.622314453000058 + ], + [ + 103.802124023000033, + 11.622314453000058 + ], + [ + 103.797912598000039, + 11.622314453000058 + ], + [ + 103.795288086000085, + 11.624511719000054 + ], + [ + 103.795715332000043, + 11.629699707000043 + ], + [ + 103.796081543000071, + 11.633728027000075 + ], + [ + 103.795288086000085, + 11.638305664000029 + ], + [ + 103.795715332000043, + 11.643920898000033 + ], + [ + 103.796325684000067, + 11.648071289000029 + ], + [ + 103.796508789000086, + 11.651123047000056 + ], + [ + 103.797302246000072, + 11.654724121000072 + ], + [ + 103.798706055000082, + 11.657287598000039 + ], + [ + 103.800903320000032, + 11.660705566000047 + ], + [ + 103.802307129000042, + 11.664123535000044 + ], + [ + 103.803100586000085, + 11.66687011700003 + ], + [ + 103.802490234000061, + 11.669677734000061 + ], + [ + 103.802490234000061, + 11.673522949000073 + ], + [ + 103.802124023000033, + 11.677490234000061 + ], + [ + 103.80108642600004, + 11.680480957000043 + ], + [ + 103.800720215000069, + 11.683715820000032 + ], + [ + 103.799316406000059, + 11.686523437000062 + ], + [ + 103.797302246000072, + 11.689086914000029 + ], + [ + 103.794921875000057, + 11.691894531000059 + ], + [ + 103.792724609000061, + 11.693908691000047 + ], + [ + 103.789916992000087, + 11.696899414000029 + ], + [ + 103.786071777000075, + 11.699279785000044 + ], + [ + 103.783081055000082, + 11.701721191000047 + ], + [ + 103.780273437000062, + 11.704895020000038 + ], + [ + 103.778076172000056, + 11.708129883000026 + ], + [ + 103.776123047000056, + 11.710876465000069 + ], + [ + 103.775329590000069, + 11.713684082000043 + ], + [ + 103.774719238000046, + 11.717285156000059 + ], + [ + 103.773925781000059, + 11.720886230000076 + ], + [ + 103.774108887000068, + 11.725708008000026 + ], + [ + 103.774475098000039, + 11.729919434000067 + ], + [ + 103.775329590000069, + 11.73327636700003 + ], + [ + 103.775878906000059, + 11.738098145000038 + ], + [ + 103.778320312000062, + 11.74108886700003 + ], + [ + 103.780517578000058, + 11.743896484000061 + ], + [ + 103.782470703000058, + 11.747924805000025 + ], + [ + 103.782897949000073, + 11.751708984000061 + ], + [ + 103.781311035000044, + 11.755126953000058 + ], + [ + 103.778686523000033, + 11.758483887000068 + ], + [ + 103.776123047000056, + 11.762329102000024 + ], + [ + 103.775512695000032, + 11.765686035000044 + ], + [ + 103.773681641000053, + 11.768676758000026 + ], + [ + 103.773498535000044, + 11.772888184000067 + ], + [ + 103.774719238000046, + 11.77569580100004 + ], + [ + 103.777526855000076, + 11.778076172000056 + ], + [ + 103.788879395000038, + 11.784729004000042 + ], + [ + 103.792114258000083, + 11.787109375000057 + ], + [ + 103.792907715000069, + 11.790710449000073 + ], + [ + 103.792907715000069, + 11.795898437000062 + ], + [ + 103.79327392600004, + 11.80108642600004 + ], + [ + 103.790710449000073, + 11.804687500000057 + ], + [ + 103.786499023000033, + 11.806518555000025 + ], + [ + 103.784301758000083, + 11.808715820000032 + ], + [ + 103.783874512000068, + 11.812072754000042 + ], + [ + 103.783325195000032, + 11.816284180000025 + ], + [ + 103.783081055000082, + 11.821472168000071 + ], + [ + 103.782470703000058, + 11.826904297000056 + ], + [ + 103.781311035000044, + 11.832092285000044 + ], + [ + 103.781677246000072, + 11.836730957000043 + ], + [ + 103.78350830100004, + 11.841308594000054 + ], + [ + 103.785095215000069, + 11.845275879000042 + ], + [ + 103.784729004000042, + 11.849487305000025 + ], + [ + 103.788696289000086, + 11.850280762000068 + ], + [ + 103.791870117000087, + 11.847900391000053 + ], + [ + 103.796325684000067, + 11.845886230000076 + ], + [ + 103.801330566000047, + 11.844116211000028 + ], + [ + 103.804504395000038, + 11.84210205100004 + ], + [ + 103.807922363000046, + 11.840270996000072 + ], + [ + 103.813293457000043, + 11.839477539000029 + ], + [ + 103.817321777000075, + 11.838928223000039 + ], + [ + 103.821289062000062, + 11.838684082000043 + ], + [ + 103.824707031000059, + 11.837280273000033 + ], + [ + 103.827697754000042, + 11.836120605000076 + ], + [ + 103.830688477000081, + 11.835693359000061 + ], + [ + 103.836303711000085, + 11.836730957000043 + ], + [ + 103.840270996000072, + 11.836914062000062 + ], + [ + 103.842895508000083, + 11.838928223000039 + ], + [ + 103.845703125000057, + 11.840270996000072 + ], + [ + 103.848693848000039, + 11.841674805000025 + ], + [ + 103.851684570000032, + 11.842529297000056 + ], + [ + 103.856872559000067, + 11.843505859000061 + ], + [ + 103.859924316000047, + 11.843322754000042 + ], + [ + 103.863098145000038, + 11.844299316000047 + ], + [ + 103.866088867000087, + 11.847106934000067 + ], + [ + 103.868286133000083, + 11.849670410000044 + ], + [ + 103.871887207000043, + 11.84991455100004 + ], + [ + 103.874694824000073, + 11.849304199000073 + ], + [ + 103.875488281000059, + 11.857299805000025 + ], + [ + 103.873291016000053, + 11.860717773000033 + ], + [ + 103.875122070000032, + 11.864074707000043 + ], + [ + 103.876892090000069, + 11.867309570000032 + ], + [ + 103.880126953000058, + 11.869873047000056 + ], + [ + 103.882080078000058, + 11.873291016000053 + ], + [ + 103.884277344000054, + 11.875915527000075 + ], + [ + 103.887878418000071, + 11.877929687000062 + ], + [ + 103.890075684000067, + 11.88171386700003 + ], + [ + 103.892272949000073, + 11.884887695000032 + ], + [ + 103.896484375000057, + 11.886901855000076 + ], + [ + 103.901306152000075, + 11.887878418000071 + ], + [ + 103.906127930000082, + 11.88952636700003 + ], + [ + 103.910278320000032, + 11.890319824000073 + ], + [ + 103.913879395000038, + 11.89093017600004 + ], + [ + 103.916076660000044, + 11.893920898000033 + ], + [ + 103.918701172000056, + 11.897094727000024 + ], + [ + 103.921325684000067, + 11.898681641000053 + ], + [ + 103.921325684000067, + 11.902893066000047 + ], + [ + 103.918884277000075, + 11.906494141000053 + ], + [ + 103.917114258000083, + 11.908691406000059 + ], + [ + 103.916503906000059, + 11.911682129000042 + ], + [ + 103.916687012000068, + 11.915527344000054 + ], + [ + 103.916076660000044, + 11.920471191000047 + ], + [ + 103.917114258000083, + 11.924072266000053 + ], + [ + 103.916687012000068, + 11.927673340000069 + ], + [ + 103.917907715000069, + 11.930725098000039 + ], + [ + 103.920715332000043, + 11.931884766000053 + ], + [ + 103.925109863000046, + 11.932312012000068 + ], + [ + 103.927673340000069, + 11.93389892600004 + ], + [ + 103.931884766000053, + 11.935913086000028 + ], + [ + 103.935119629000042, + 11.935729980000076 + ], + [ + 103.936279297000056, + 11.938903809000067 + ], + [ + 103.939086914000086, + 11.941894531000059 + ], + [ + 103.942871094000054, + 11.943725586000028 + ], + [ + 103.947692871000072, + 11.943481445000032 + ], + [ + 103.952087402000075, + 11.939270020000038 + ], + [ + 103.957702637000068, + 11.938476562000062 + ], + [ + 103.961914062000062, + 11.937927246000072 + ], + [ + 103.963928223000039, + 11.935729980000076 + ], + [ + 103.973693848000039, + 11.935913086000028 + ], + [ + 103.976318359000061, + 11.933471680000025 + ], + [ + 103.978515625000057, + 11.931091309000067 + ], + [ + 103.979125977000081, + 11.927490234000061 + ], + [ + 103.980712891000053, + 11.921875 + ], + [ + 103.984497070000032, + 11.914672852000024 + ], + [ + 103.986083984000061, + 11.911682129000042 + ], + [ + 103.988525391000053, + 11.908874512000068 + ], + [ + 103.988891602000081, + 11.905883789000029 + ], + [ + 103.991699219000054, + 11.902893066000047 + ], + [ + 103.995910645000038, + 11.902893066000047 + ], + [ + 104.001281738000046, + 11.903503418000071 + ], + [ + 104.004272461000085, + 11.903076172000056 + ], + [ + 104.007324219000054, + 11.902709961000028 + ], + [ + 104.011718750000057, + 11.901672363000046 + ], + [ + 104.015686035000044, + 11.900878906000059 + ], + [ + 104.019714355000076, + 11.901306152000075 + ], + [ + 104.022094727000081, + 11.904296875000057 + ], + [ + 104.02569580100004, + 11.907470703000058 + ], + [ + 104.029113770000038, + 11.909729004000042 + ], + [ + 104.033874512000068, + 11.914489746000072 + ], + [ + 104.037475586000085, + 11.915893555000025 + ], + [ + 104.040527344000054, + 11.91827392600004 + ], + [ + 104.043518066000047, + 11.921508789000029 + ], + [ + 104.048522949000073, + 11.921325684000067 + ], + [ + 104.052307129000042, + 11.920288086000028 + ], + [ + 104.057678223000039, + 11.920898437000062 + ], + [ + 104.062072754000042, + 11.923522949000073 + ], + [ + 104.063293457000043, + 11.927307129000042 + ], + [ + 104.058105469000054, + 11.94030761700003 + ], + [ + 104.056091309000067, + 11.947692871000072 + ], + [ + 104.054504395000038, + 11.95147705100004 + ], + [ + 104.050476074000073, + 11.955688477000024 + ], + [ + 104.057922363000046, + 11.968505859000061 + ], + [ + 104.062927246000072, + 11.969909668000071 + ], + [ + 104.072875977000081, + 11.968872070000032 + ], + [ + 104.076293945000032, + 11.976318359000061 + ], + [ + 104.074096680000082, + 11.98132324200003 + ], + [ + 104.077880859000061, + 11.98468017600004 + ], + [ + 104.081115723000039, + 11.985290527000075 + ], + [ + 104.087097168000071, + 11.981689453000058 + ], + [ + 104.089294434000067, + 11.986511230000076 + ], + [ + 104.088073730000076, + 11.990722656000059 + ], + [ + 104.091308594000054, + 11.996520996000072 + ], + [ + 104.092712402000075, + 12.001098633000026 + ], + [ + 104.092712402000075, + 12.004516602000024 + ], + [ + 104.093872070000032, + 12.00811767600004 + ], + [ + 104.095275879000042, + 12.011108398000033 + ], + [ + 104.095886230000076, + 12.016906738000046 + ], + [ + 104.097106934000067, + 12.020690918000071 + ], + [ + 104.097106934000067, + 12.026672363000046 + ], + [ + 104.095886230000076, + 12.031494141000053 + ], + [ + 104.094482422000056, + 12.035095215000069 + ], + [ + 104.095092773000033, + 12.038696289000029 + ], + [ + 104.102478027000075, + 12.037719727000024 + ], + [ + 104.105285645000038, + 12.039306641000053 + ], + [ + 104.108276367000087, + 12.042907715000069 + ], + [ + 104.111083984000061, + 12.045715332000043 + ], + [ + 104.114074707000043, + 12.047119141000053 + ], + [ + 104.125122070000032, + 12.04772949200003 + ], + [ + 104.129272461000085, + 12.045715332000043 + ], + [ + 104.134521484000061, + 12.04327392600004 + ], + [ + 104.139099121000072, + 12.042724609000061 + ], + [ + 104.143310547000056, + 12.043701172000056 + ], + [ + 104.145874023000033, + 12.046325684000067 + ], + [ + 104.146728516000053, + 12.049499512000068 + ], + [ + 104.149291992000087, + 12.050720215000069 + ], + [ + 104.152709961000085, + 12.050476074000073 + ], + [ + 104.156127930000082, + 12.049926758000026 + ], + [ + 104.160888672000056, + 12.04968261700003 + ], + [ + 104.164916992000087, + 12.048095703000058 + ], + [ + 104.167907715000069, + 12.046325684000067 + ], + [ + 104.170471191000047, + 12.043701172000056 + ], + [ + 104.172485352000081, + 12.040710449000073 + ], + [ + 104.17608642600004, + 12.038696289000029 + ], + [ + 104.180114746000072, + 12.037719727000024 + ], + [ + 104.182678223000039, + 12.039306641000053 + ], + [ + 104.182922363000046, + 12.042480469000054 + ], + [ + 104.182312012000068, + 12.045898437000062 + ], + [ + 104.181274414000086, + 12.05108642600004 + ], + [ + 104.183105469000054, + 12.055908203000058 + ], + [ + 104.185119629000042, + 12.059692383000026 + ], + [ + 104.186889648000033, + 12.063293457000043 + ], + [ + 104.188720703000058, + 12.067504883000026 + ], + [ + 104.190490723000039, + 12.070495605000076 + ], + [ + 104.192871094000054, + 12.072875977000024 + ], + [ + 104.195678711000085, + 12.074707031000059 + ], + [ + 104.199279785000044, + 12.076721191000047 + ], + [ + 104.200683594000054, + 12.073486328000058 + ], + [ + 104.202087402000075, + 12.069702148000033 + ], + [ + 104.202880859000061, + 12.066894531000059 + ], + [ + 104.203674316000047, + 12.061889648000033 + ], + [ + 104.204528809000067, + 12.056701660000044 + ], + [ + 104.205688477000081, + 12.051879883000026 + ], + [ + 104.208129883000083, + 12.047485352000024 + ], + [ + 104.208679199000073, + 12.043884277000075 + ], + [ + 104.209899902000075, + 12.03991699200003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 6.3235590302900002, + "Shape_Area": 1.03710683632, + "ADM1_EN": "Kampong Thom", + "ADM1_PCODE": "KH06", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105.631713867000087, + 13.058471680000025 + ], + [ + 105.634277344000054, + 13.052307129000042 + ], + [ + 105.635681152000075, + 13.047485352000024 + ], + [ + 105.637084961000085, + 13.043884277000075 + ], + [ + 105.638305664000086, + 13.040893555000025 + ], + [ + 105.639282227000081, + 13.038085937000062 + ], + [ + 105.640319824000073, + 13.034912109000061 + ], + [ + 105.641723633000083, + 13.031311035000044 + ], + [ + 105.642700195000089, + 13.027709961000028 + ], + [ + 105.643493652000075, + 13.02429199200003 + ], + [ + 105.644287109000061, + 13.021484375000057 + ], + [ + 105.645080566000047, + 13.017700195000032 + ], + [ + 105.646728516000053, + 13.013122559000067 + ], + [ + 105.648071289000086, + 13.009887695000032 + ], + [ + 105.649475098000039, + 13.00671386700003 + ], + [ + 105.649902344000054, + 13.003112793000071 + ], + [ + 105.648925781000059, + 12.997680664000029 + ], + [ + 105.646728516000053, + 12.993896484000061 + ], + [ + 105.644897461000085, + 12.990478516000053 + ], + [ + 105.643127441000047, + 12.987487793000071 + ], + [ + 105.642517090000069, + 12.984313965000069 + ], + [ + 105.643676758000083, + 12.980285645000038 + ], + [ + 105.645874023000033, + 12.977478027000075 + ], + [ + 105.647705078000058, + 12.975280762000068 + ], + [ + 105.650085449000073, + 12.973083496000072 + ], + [ + 105.653686523000033, + 12.971923828000058 + ], + [ + 105.657287598000039, + 12.970092773000033 + ], + [ + 105.661682129000042, + 12.969726562000062 + ], + [ + 105.664306641000053, + 12.967895508000026 + ], + [ + 105.668090820000089, + 12.963500977000024 + ], + [ + 105.671875, + 12.959472656000059 + ], + [ + 105.676879883000083, + 12.956298828000058 + ], + [ + 105.678100586000085, + 12.953125 + ], + [ + 105.677307129000042, + 12.949890137000068 + ], + [ + 105.675903320000089, + 12.946472168000071 + ], + [ + 105.672485352000081, + 12.940124512000068 + ], + [ + 105.671081543000071, + 12.935913086000028 + ], + [ + 105.669311523000033, + 12.932678223000039 + ], + [ + 105.661315918000071, + 12.928710937000062 + ], + [ + 105.658874512000068, + 12.926696777000075 + ], + [ + 105.656127930000082, + 12.924926758000026 + ], + [ + 105.655273437000062, + 12.920715332000043 + ], + [ + 105.656494141000053, + 12.916503906000059 + ], + [ + 105.659484863000046, + 12.908081055000025 + ], + [ + 105.661499023000033, + 12.903930664000029 + ], + [ + 105.663879395000038, + 12.902282715000069 + ], + [ + 105.674682617000087, + 12.898315430000025 + ], + [ + 105.677673340000069, + 12.896301270000038 + ], + [ + 105.682495117000087, + 12.886291504000042 + ], + [ + 105.684509277000075, + 12.882080078000058 + ], + [ + 105.686096191000047, + 12.878479004000042 + ], + [ + 105.687072754000042, + 12.87390136700003 + ], + [ + 105.688476562000062, + 12.869506836000028 + ], + [ + 105.690124512000068, + 12.865722656000059 + ], + [ + 105.689086914000086, + 12.860290527000075 + ], + [ + 105.6875, + 12.855895996000072 + ], + [ + 105.686096191000047, + 12.850708008000026 + ], + [ + 105.684875488000046, + 12.847473145000038 + ], + [ + 105.683288574000073, + 12.844299316000047 + ], + [ + 105.680908203000058, + 12.841125488000046 + ], + [ + 105.677307129000042, + 12.837524414000029 + ], + [ + 105.674072266000053, + 12.835083008000026 + ], + [ + 105.671508789000086, + 12.831115723000039 + ], + [ + 105.671875, + 12.827697754000042 + ], + [ + 105.673889160000044, + 12.825317383000026 + ], + [ + 105.675903320000089, + 12.821899414000029 + ], + [ + 105.679504395000038, + 12.819274902000075 + ], + [ + 105.681701660000044, + 12.816894531000059 + ], + [ + 105.684326172000056, + 12.810729980000076 + ], + [ + 105.679687500000057, + 12.806884766000053 + ], + [ + 105.680114746000072, + 12.800720215000069 + ], + [ + 105.680297852000081, + 12.797302246000072 + ], + [ + 105.680297852000081, + 12.79327392600004 + ], + [ + 105.678894043000071, + 12.790527344000054 + ], + [ + 105.678894043000071, + 12.787475586000028 + ], + [ + 105.676513672000056, + 12.779479980000076 + ], + [ + 105.681274414000086, + 12.775329590000069 + ], + [ + 105.685302734000061, + 12.773315430000025 + ], + [ + 105.686706543000071, + 12.768676758000026 + ], + [ + 105.687316895000038, + 12.764892578000058 + ], + [ + 105.688293457000043, + 12.761901855000076 + ], + [ + 105.689514160000044, + 12.758911133000026 + ], + [ + 105.691284180000082, + 12.755310059000067 + ], + [ + 105.694885254000042, + 12.751098633000026 + ], + [ + 105.697326660000044, + 12.746520996000072 + ], + [ + 105.695678711000085, + 12.741516113000046 + ], + [ + 105.693298340000069, + 12.737487793000071 + ], + [ + 105.69171142600004, + 12.733520508000026 + ], + [ + 105.691894531000059, + 12.730102539000029 + ], + [ + 105.692504883000083, + 12.726074219000054 + ], + [ + 105.692077637000068, + 12.721679687000062 + ], + [ + 105.695495605000076, + 12.717529297000056 + ], + [ + 105.696472168000071, + 12.713684082000043 + ], + [ + 105.697875977000081, + 12.710083008000026 + ], + [ + 105.700500488000046, + 12.706909180000025 + ], + [ + 105.702514648000033, + 12.704711914000029 + ], + [ + 105.704895020000038, + 12.702087402000075 + ], + [ + 105.707092285000044, + 12.699279785000044 + ], + [ + 105.709899902000075, + 12.696289062000062 + ], + [ + 105.712280273000033, + 12.692321777000075 + ], + [ + 105.712280273000033, + 12.687683105000076 + ], + [ + 105.712097168000071, + 12.683715820000032 + ], + [ + 105.711914062000062, + 12.680297852000024 + ], + [ + 105.712097168000071, + 12.676879883000026 + ], + [ + 105.714111328000058, + 12.672912598000039 + ], + [ + 105.715698242000087, + 12.670104980000076 + ], + [ + 105.717895508000083, + 12.664306641000053 + ], + [ + 105.718688965000069, + 12.660522461000028 + ], + [ + 105.719299316000047, + 12.65710449200003 + ], + [ + 105.720520020000038, + 12.652526855000076 + ], + [ + 105.721496582000043, + 12.646118164000029 + ], + [ + 105.722290039000086, + 12.64147949200003 + ], + [ + 105.722717285000044, + 12.638122559000067 + ], + [ + 105.722717285000044, + 12.63311767600004 + ], + [ + 105.722290039000086, + 12.629272461000028 + ], + [ + 105.721313477000081, + 12.626281738000046 + ], + [ + 105.719482422000056, + 12.622924805000025 + ], + [ + 105.718322754000042, + 12.619506836000028 + ], + [ + 105.717895508000083, + 12.616516113000046 + ], + [ + 105.717895508000083, + 12.612304687000062 + ], + [ + 105.717529297000056, + 12.606872559000067 + ], + [ + 105.717529297000056, + 12.603515625000057 + ], + [ + 105.717285156000059, + 12.598327637000068 + ], + [ + 105.717529297000056, + 12.595275879000042 + ], + [ + 105.718078613000046, + 12.591674805000025 + ], + [ + 105.719482422000056, + 12.586914062000062 + ], + [ + 105.720886230000076, + 12.58428955100004 + ], + [ + 105.721923828000058, + 12.581481934000067 + ], + [ + 105.722290039000086, + 12.576721191000047 + ], + [ + 105.722106934000067, + 12.571899414000029 + ], + [ + 105.722473145000038, + 12.567077637000068 + ], + [ + 105.723083496000072, + 12.563903809000067 + ], + [ + 105.724121094000054, + 12.560485840000069 + ], + [ + 105.725280762000068, + 12.55749511700003 + ], + [ + 105.726684570000089, + 12.554687500000057 + ], + [ + 105.728271484000061, + 12.551513672000056 + ], + [ + 105.729492187000062, + 12.547119141000053 + ], + [ + 105.730102539000086, + 12.543518066000047 + ], + [ + 105.730712891000053, + 12.539489746000072 + ], + [ + 105.730529785000044, + 12.535888672000056 + ], + [ + 105.730712891000053, + 12.532470703000058 + ], + [ + 105.730712891000053, + 12.529113770000038 + ], + [ + 105.730895996000072, + 12.525329590000069 + ], + [ + 105.731079102000081, + 12.522094727000024 + ], + [ + 105.732910156000059, + 12.518676758000026 + ], + [ + 105.733276367000087, + 12.512329102000024 + ], + [ + 105.733276367000087, + 12.508300781000059 + ], + [ + 105.733520508000083, + 12.505310059000067 + ], + [ + 105.733520508000083, + 12.501281738000046 + ], + [ + 105.729675293000071, + 12.501098633000026 + ], + [ + 105.726074219000054, + 12.501098633000026 + ], + [ + 105.722900391000053, + 12.501525879000042 + ], + [ + 105.719726562000062, + 12.501525879000042 + ], + [ + 105.715881348000039, + 12.500915527000075 + ], + [ + 105.712707520000038, + 12.49890136700003 + ], + [ + 105.709106445000089, + 12.496520996000072 + ], + [ + 105.704895020000038, + 12.494689941000047 + ], + [ + 105.700927734000061, + 12.494323730000076 + ], + [ + 105.695922852000081, + 12.494873047000056 + ], + [ + 105.690490723000039, + 12.494689941000047 + ], + [ + 105.685729980000076, + 12.493530273000033 + ], + [ + 105.681274414000086, + 12.492126465000069 + ], + [ + 105.678527832000043, + 12.491271973000039 + ], + [ + 105.675476074000073, + 12.490722656000059 + ], + [ + 105.671875, + 12.490295410000044 + ], + [ + 105.666870117000087, + 12.490905762000068 + ], + [ + 105.663085937000062, + 12.49108886700003 + ], + [ + 105.659729004000042, + 12.491516113000046 + ], + [ + 105.656311035000044, + 12.491882324000073 + ], + [ + 105.650878906000059, + 12.492675781000059 + ], + [ + 105.646911621000072, + 12.492919922000056 + ], + [ + 105.643127441000047, + 12.493286133000026 + ], + [ + 105.639282227000081, + 12.494079590000069 + ], + [ + 105.634277344000054, + 12.494873047000056 + ], + [ + 105.630493164000086, + 12.494323730000076 + ], + [ + 105.627319336000085, + 12.494323730000076 + ], + [ + 105.622314453000058, + 12.494323730000076 + ], + [ + 105.617675781000059, + 12.494079590000069 + ], + [ + 105.614318848000039, + 12.494079590000069 + ], + [ + 105.610473633000083, + 12.494323730000076 + ], + [ + 105.606323242000087, + 12.494506836000028 + ], + [ + 105.601318359000061, + 12.493530273000033 + ], + [ + 105.597106934000067, + 12.494689941000047 + ], + [ + 105.593078613000046, + 12.494506836000028 + ], + [ + 105.589477539000086, + 12.494323730000076 + ], + [ + 105.586303711000085, + 12.493896484000061 + ], + [ + 105.582092285000044, + 12.493713379000042 + ], + [ + 105.577697754000042, + 12.493530273000033 + ], + [ + 105.573913574000073, + 12.493286133000026 + ], + [ + 105.569702148000033, + 12.493286133000026 + ], + [ + 105.566101074000073, + 12.493103027000075 + ], + [ + 105.5625, + 12.492919922000056 + ], + [ + 105.558105469000054, + 12.492675781000059 + ], + [ + 105.552917480000076, + 12.492309570000032 + ], + [ + 105.548522949000073, + 12.491882324000073 + ], + [ + 105.545898437000062, + 12.488281250000057 + ], + [ + 105.543090820000089, + 12.48468017600004 + ], + [ + 105.540527344000054, + 12.481689453000058 + ], + [ + 105.537109375000057, + 12.478271484000061 + ], + [ + 105.533874512000068, + 12.476501465000069 + ], + [ + 105.531494141000053, + 12.473327637000068 + ], + [ + 105.530517578000058, + 12.469726562000062 + ], + [ + 105.528503418000071, + 12.465515137000068 + ], + [ + 105.52569580100004, + 12.463500977000024 + ], + [ + 105.527282715000069, + 12.461120605000076 + ], + [ + 105.524108887000068, + 12.459716797000056 + ], + [ + 105.524108887000068, + 12.456481934000067 + ], + [ + 105.519470215000069, + 12.456481934000067 + ], + [ + 105.515502930000082, + 12.455322266000053 + ], + [ + 105.511108398000033, + 12.453918457000043 + ], + [ + 105.506896973000039, + 12.454101562000062 + ], + [ + 105.503906250000057, + 12.452880859000061 + ], + [ + 105.500488281000059, + 12.45007324200003 + ], + [ + 105.496520996000072, + 12.450927734000061 + ], + [ + 105.491271973000039, + 12.451721191000047 + ], + [ + 105.487121582000043, + 12.454528809000067 + ], + [ + 105.490112305000082, + 12.457092285000044 + ], + [ + 105.486511230000076, + 12.459899902000075 + ], + [ + 105.483093262000068, + 12.462890625000057 + ], + [ + 105.478881836000085, + 12.463500977000024 + ], + [ + 105.475708008000083, + 12.461914062000062 + ], + [ + 105.47491455100004, + 12.464904785000044 + ], + [ + 105.476501465000069, + 12.467895508000026 + ], + [ + 105.473083496000072, + 12.469299316000047 + ], + [ + 105.470092773000033, + 12.472717285000044 + ], + [ + 105.46710205100004, + 12.472106934000067 + ], + [ + 105.465881348000039, + 12.469299316000047 + ], + [ + 105.462280273000033, + 12.473876953000058 + ], + [ + 105.459716797000056, + 12.477294922000056 + ], + [ + 105.457275391000053, + 12.478881836000028 + ], + [ + 105.453491211000085, + 12.476501465000069 + ], + [ + 105.451904297000056, + 12.480895996000072 + ], + [ + 105.448913574000073, + 12.486328125000057 + ], + [ + 105.444702148000033, + 12.490478516000053 + ], + [ + 105.440917969000054, + 12.490905762000068 + ], + [ + 105.440673828000058, + 12.494506836000028 + ], + [ + 105.437927246000072, + 12.492675781000059 + ], + [ + 105.435485840000069, + 12.489685059000067 + ], + [ + 105.431091309000067, + 12.488281250000057 + ], + [ + 105.427307129000042, + 12.488891602000024 + ], + [ + 105.423522949000073, + 12.488098145000038 + ], + [ + 105.420288086000085, + 12.488525391000053 + ], + [ + 105.416870117000087, + 12.487915039000029 + ], + [ + 105.41632080100004, + 12.484313965000069 + ], + [ + 105.413330078000058, + 12.482482910000044 + ], + [ + 105.40850830100004, + 12.482910156000059 + ], + [ + 105.405883789000086, + 12.486083984000061 + ], + [ + 105.402282715000069, + 12.487121582000043 + ], + [ + 105.398925781000059, + 12.485717773000033 + ], + [ + 105.397521973000039, + 12.481872559000067 + ], + [ + 105.400085449000073, + 12.480285645000038 + ], + [ + 105.401672363000046, + 12.476501465000069 + ], + [ + 105.399108887000068, + 12.474487305000025 + ], + [ + 105.400512695000089, + 12.471496582000043 + ], + [ + 105.401489258000083, + 12.468078613000046 + ], + [ + 105.399719238000046, + 12.465270996000072 + ], + [ + 105.395874023000033, + 12.462280273000033 + ], + [ + 105.394287109000061, + 12.458679199000073 + ], + [ + 105.392089844000054, + 12.455322266000053 + ], + [ + 105.391296387000068, + 12.451110840000069 + ], + [ + 105.392089844000054, + 12.445678711000028 + ], + [ + 105.390319824000073, + 12.442687988000046 + ], + [ + 105.389526367000087, + 12.439514160000044 + ], + [ + 105.388488770000038, + 12.434326172000056 + ], + [ + 105.386108398000033, + 12.431091309000067 + ], + [ + 105.384277344000054, + 12.428710937000062 + ], + [ + 105.382873535000044, + 12.42608642600004 + ], + [ + 105.383728027000075, + 12.423278809000067 + ], + [ + 105.382690430000082, + 12.420104980000076 + ], + [ + 105.380310059000067, + 12.418090820000032 + ], + [ + 105.377075195000089, + 12.415710449000073 + ], + [ + 105.37530517600004, + 12.411926270000038 + ], + [ + 105.377685547000056, + 12.407897949000073 + ], + [ + 105.376281738000046, + 12.404907227000024 + ], + [ + 105.374877930000082, + 12.40069580100004 + ], + [ + 105.373718262000068, + 12.396484375000057 + ], + [ + 105.372497559000067, + 12.39288330100004 + ], + [ + 105.371704102000081, + 12.388122559000067 + ], + [ + 105.369079590000069, + 12.385925293000071 + ], + [ + 105.367675781000059, + 12.380493164000029 + ], + [ + 105.366882324000073, + 12.374877930000025 + ], + [ + 105.365478516000053, + 12.371276855000076 + ], + [ + 105.364318848000039, + 12.366516113000046 + ], + [ + 105.360900879000042, + 12.363891602000024 + ], + [ + 105.357910156000059, + 12.361511230000076 + ], + [ + 105.354675293000071, + 12.360107422000056 + ], + [ + 105.350891113000046, + 12.358703613000046 + ], + [ + 105.346923828000058, + 12.356872559000067 + ], + [ + 105.343688965000069, + 12.356872559000067 + ], + [ + 105.339477539000086, + 12.356689453000058 + ], + [ + 105.335876465000069, + 12.357116699000073 + ], + [ + 105.331909180000082, + 12.35772705100004 + ], + [ + 105.330078125000057, + 12.361877441000047 + ], + [ + 105.329895020000038, + 12.365478516000053 + ], + [ + 105.330322266000053, + 12.368896484000061 + ], + [ + 105.328491211000085, + 12.371704102000024 + ], + [ + 105.324096680000082, + 12.373474121000072 + ], + [ + 105.319519043000071, + 12.375915527000075 + ], + [ + 105.317504883000083, + 12.380920410000044 + ], + [ + 105.314697266000053, + 12.382873535000044 + ], + [ + 105.311706543000071, + 12.382873535000044 + ], + [ + 105.308715820000089, + 12.38311767600004 + ], + [ + 105.303894043000071, + 12.383300781000059 + ], + [ + 105.299926758000083, + 12.383300781000059 + ], + [ + 105.296875, + 12.383300781000059 + ], + [ + 105.292724609000061, + 12.383728027000075 + ], + [ + 105.288513184000067, + 12.384887695000032 + ], + [ + 105.28350830100004, + 12.384704590000069 + ], + [ + 105.279907227000081, + 12.382690430000025 + ], + [ + 105.276123047000056, + 12.384277344000054 + ], + [ + 105.274291992000087, + 12.387512207000043 + ], + [ + 105.272094727000081, + 12.39147949200003 + ], + [ + 105.269714355000076, + 12.394897461000028 + ], + [ + 105.267272949000073, + 12.396484375000057 + ], + [ + 105.264099121000072, + 12.399108887000068 + ], + [ + 105.261291504000042, + 12.399902344000054 + ], + [ + 105.258300781000059, + 12.399108887000068 + ], + [ + 105.254516602000081, + 12.398071289000029 + ], + [ + 105.25030517600004, + 12.398498535000044 + ], + [ + 105.246276855000076, + 12.397888184000067 + ], + [ + 105.243286133000083, + 12.396301270000038 + ], + [ + 105.240112305000082, + 12.394714355000076 + ], + [ + 105.235900879000042, + 12.394470215000069 + ], + [ + 105.232299805000082, + 12.395507812000062 + ], + [ + 105.229125977000081, + 12.396118164000029 + ], + [ + 105.225280762000068, + 12.398498535000044 + ], + [ + 105.221496582000043, + 12.401306152000075 + ], + [ + 105.217895508000083, + 12.401123047000056 + ], + [ + 105.213317871000072, + 12.400329590000069 + ], + [ + 105.211730957000043, + 12.396301270000038 + ], + [ + 105.208129883000083, + 12.394470215000069 + ], + [ + 105.204895020000038, + 12.393920898000033 + ], + [ + 105.202270508000083, + 12.392700195000032 + ], + [ + 105.199279785000044, + 12.392517090000069 + ], + [ + 105.195922852000081, + 12.39288330100004 + ], + [ + 105.192077637000068, + 12.39288330100004 + ], + [ + 105.188903809000067, + 12.393493652000075 + ], + [ + 105.185485840000069, + 12.396911621000072 + ], + [ + 105.182678223000039, + 12.397705078000058 + ], + [ + 105.178527832000043, + 12.397094727000024 + ], + [ + 105.173522949000073, + 12.397277832000043 + ], + [ + 105.169494629000042, + 12.400512695000032 + ], + [ + 105.166687012000068, + 12.397521973000039 + ], + [ + 105.167480469000054, + 12.394470215000069 + ], + [ + 105.167907715000069, + 12.390502930000025 + ], + [ + 105.165893555000082, + 12.387329102000024 + ], + [ + 105.162902832000043, + 12.383911133000026 + ], + [ + 105.160278320000089, + 12.381530762000068 + ], + [ + 105.156494141000053, + 12.38171386700003 + ], + [ + 105.152526855000076, + 12.380126953000058 + ], + [ + 105.147277832000043, + 12.378906250000057 + ], + [ + 105.143920898000033, + 12.376708984000061 + ], + [ + 105.141723633000083, + 12.373474121000072 + ], + [ + 105.137695312000062, + 12.370727539000029 + ], + [ + 105.132690430000082, + 12.368530273000033 + ], + [ + 105.129272461000085, + 12.365478516000053 + ], + [ + 105.131896973000039, + 12.362121582000043 + ], + [ + 105.133728027000075, + 12.358886719000054 + ], + [ + 105.137084961000085, + 12.356689453000058 + ], + [ + 105.140075684000067, + 12.353881836000028 + ], + [ + 105.141906738000046, + 12.351684570000032 + ], + [ + 105.144897461000085, + 12.348693848000039 + ], + [ + 105.147705078000058, + 12.345520020000038 + ], + [ + 105.148315430000082, + 12.340881348000039 + ], + [ + 105.149475098000039, + 12.337524414000029 + ], + [ + 105.152709961000085, + 12.334472656000059 + ], + [ + 105.156127930000082, + 12.332702637000068 + ], + [ + 105.160888672000056, + 12.331298828000058 + ], + [ + 105.165710449000073, + 12.330322266000053 + ], + [ + 105.169311523000033, + 12.329528809000067 + ], + [ + 105.167114258000083, + 12.325927734000061 + ], + [ + 105.165527344000054, + 12.319091797000056 + ], + [ + 105.165527344000054, + 12.314086914000029 + ], + [ + 105.167724609000061, + 12.310913086000028 + ], + [ + 105.169677734000061, + 12.307678223000039 + ], + [ + 105.168701172000056, + 12.303710937000062 + ], + [ + 105.167480469000054, + 12.299499512000068 + ], + [ + 105.168701172000056, + 12.295104980000076 + ], + [ + 105.172485352000081, + 12.284729004000042 + ], + [ + 105.175109863000046, + 12.281677246000072 + ], + [ + 105.179504395000038, + 12.278930664000029 + ], + [ + 105.182495117000087, + 12.274902344000054 + ], + [ + 105.189514160000044, + 12.270324707000043 + ], + [ + 105.191894531000059, + 12.268493652000075 + ], + [ + 105.194519043000071, + 12.26593017600004 + ], + [ + 105.195678711000085, + 12.262878418000071 + ], + [ + 105.190490723000039, + 12.25030517600004 + ], + [ + 105.190124512000068, + 12.245300293000071 + ], + [ + 105.190124512000068, + 12.241516113000046 + ], + [ + 105.190673828000058, + 12.238098145000038 + ], + [ + 105.191284180000082, + 12.235107422000056 + ], + [ + 105.192871094000054, + 12.229919434000067 + ], + [ + 105.194091797000056, + 12.225708008000026 + ], + [ + 105.195312500000057, + 12.222290039000029 + ], + [ + 105.196289062000062, + 12.218322754000042 + ], + [ + 105.197326660000044, + 12.215087891000053 + ], + [ + 105.199096680000082, + 12.211730957000043 + ], + [ + 105.200317383000083, + 12.207092285000044 + ], + [ + 105.201293945000089, + 12.203674316000047 + ], + [ + 105.201904297000056, + 12.199707031000059 + ], + [ + 105.198120117000087, + 12.196716309000067 + ], + [ + 105.195922852000081, + 12.193298340000069 + ], + [ + 105.193298340000069, + 12.190124512000068 + ], + [ + 105.189086914000086, + 12.192321777000075 + ], + [ + 105.185729980000076, + 12.195495605000076 + ], + [ + 105.181091309000067, + 12.196472168000071 + ], + [ + 105.177673340000069, + 12.195495605000076 + ], + [ + 105.173889160000044, + 12.195312500000057 + ], + [ + 105.170288086000085, + 12.197875977000024 + ], + [ + 105.168090820000089, + 12.201110840000069 + ], + [ + 105.165527344000054, + 12.203125 + ], + [ + 105.164672852000081, + 12.206298828000058 + ], + [ + 105.163879395000038, + 12.210693359000061 + ], + [ + 105.159118652000075, + 12.212280273000033 + ], + [ + 105.154724121000072, + 12.212280273000033 + ], + [ + 105.152893066000047, + 12.214904785000044 + ], + [ + 105.150085449000073, + 12.218078613000046 + ], + [ + 105.144470215000069, + 12.219909668000071 + ], + [ + 105.14093017600004, + 12.219299316000047 + ], + [ + 105.136291504000042, + 12.219909668000071 + ], + [ + 105.132873535000044, + 12.218322754000042 + ], + [ + 105.130493164000086, + 12.216125488000046 + ], + [ + 105.127319336000085, + 12.213073730000076 + ], + [ + 105.126098633000083, + 12.209106445000032 + ], + [ + 105.122070312000062, + 12.207092285000044 + ], + [ + 105.117126465000069, + 12.206298828000058 + ], + [ + 105.112670898000033, + 12.204101562000062 + ], + [ + 105.108886719000054, + 12.204528809000067 + ], + [ + 105.105285645000038, + 12.204528809000067 + ], + [ + 105.101684570000089, + 12.205688477000024 + ], + [ + 105.100524902000075, + 12.209472656000059 + ], + [ + 105.101074219000054, + 12.212280273000033 + ], + [ + 105.101074219000054, + 12.215270996000072 + ], + [ + 105.101501465000069, + 12.219482422000056 + ], + [ + 105.09991455100004, + 12.222106934000067 + ], + [ + 105.095703125000057, + 12.221923828000058 + ], + [ + 105.090087891000053, + 12.222717285000044 + ], + [ + 105.086486816000047, + 12.223327637000068 + ], + [ + 105.082519531000059, + 12.221923828000058 + ], + [ + 105.079711914000086, + 12.223083496000072 + ], + [ + 105.075927734000061, + 12.223083496000072 + ], + [ + 105.071289062000062, + 12.223083496000072 + ], + [ + 105.066101074000073, + 12.224670410000044 + ], + [ + 105.061889648000033, + 12.226074219000054 + ], + [ + 105.057128906000059, + 12.226074219000054 + ], + [ + 105.053527832000043, + 12.225891113000046 + ], + [ + 105.049682617000087, + 12.225280762000068 + ], + [ + 105.046691895000038, + 12.224304199000073 + ], + [ + 105.042480469000054, + 12.223693848000039 + ], + [ + 105.039306641000053, + 12.222717285000044 + ], + [ + 105.035095215000069, + 12.222473145000038 + ], + [ + 105.030517578000058, + 12.221923828000058 + ], + [ + 105.026306152000075, + 12.220520020000038 + ], + [ + 105.022094727000081, + 12.218505859000061 + ], + [ + 105.018310547000056, + 12.220520020000038 + ], + [ + 105.015502930000082, + 12.222717285000044 + ], + [ + 105.012084961000085, + 12.220520020000038 + ], + [ + 105.009094238000046, + 12.222473145000038 + ], + [ + 105.007507324000073, + 12.225097656000059 + ], + [ + 105.004699707000043, + 12.228088379000042 + ], + [ + 105.002319336000085, + 12.230712891000053 + ], + [ + 104.999328613000046, + 12.232482910000044 + ], + [ + 104.996276855000076, + 12.236694336000028 + ], + [ + 104.993530273000033, + 12.239318848000039 + ], + [ + 104.990478516000053, + 12.240295410000044 + ], + [ + 104.987121582000043, + 12.243286133000026 + ], + [ + 104.986083984000061, + 12.247070312000062 + ], + [ + 104.984130859000061, + 12.250488281000059 + ], + [ + 104.981872559000067, + 12.255493164000029 + ], + [ + 104.978271484000061, + 12.258300781000059 + ], + [ + 104.975280762000068, + 12.260314941000047 + ], + [ + 104.971923828000058, + 12.263916016000053 + ], + [ + 104.967712402000075, + 12.266723633000026 + ], + [ + 104.963500977000081, + 12.265319824000073 + ], + [ + 104.962097168000071, + 12.262329102000024 + ], + [ + 104.962890625000057, + 12.25811767600004 + ], + [ + 104.95928955100004, + 12.257873535000044 + ], + [ + 104.955871582000043, + 12.259521484000061 + ], + [ + 104.95147705100004, + 12.260681152000075 + ], + [ + 104.948120117000087, + 12.261718750000057 + ], + [ + 104.946105957000043, + 12.259277344000054 + ], + [ + 104.942077637000068, + 12.260498047000056 + ], + [ + 104.937927246000072, + 12.260498047000056 + ], + [ + 104.934326172000056, + 12.259094238000046 + ], + [ + 104.930908203000058, + 12.258728027000075 + ], + [ + 104.927917480000076, + 12.261108398000033 + ], + [ + 104.922729492000087, + 12.262084961000028 + ], + [ + 104.918518066000047, + 12.262329102000024 + ], + [ + 104.91632080100004, + 12.258300781000059 + ], + [ + 104.912109375000057, + 12.258483887000068 + ], + [ + 104.908874512000068, + 12.257080078000058 + ], + [ + 104.905883789000086, + 12.256896973000039 + ], + [ + 104.904113770000038, + 12.254516602000024 + ], + [ + 104.902099609000061, + 12.251708984000061 + ], + [ + 104.901672363000046, + 12.246520996000072 + ], + [ + 104.897521973000039, + 12.244506836000028 + ], + [ + 104.893127441000047, + 12.242675781000059 + ], + [ + 104.889099121000072, + 12.240478516000053 + ], + [ + 104.886108398000033, + 12.239318848000039 + ], + [ + 104.883483887000068, + 12.238098145000038 + ], + [ + 104.880676270000038, + 12.237304687000062 + ], + [ + 104.876525879000042, + 12.238098145000038 + ], + [ + 104.872680664000086, + 12.238098145000038 + ], + [ + 104.872680664000086, + 12.24249267600004 + ], + [ + 104.871520996000072, + 12.245117187000062 + ], + [ + 104.869506836000085, + 12.247924805000025 + ], + [ + 104.868103027000075, + 12.251098633000026 + ], + [ + 104.865905762000068, + 12.254272461000028 + ], + [ + 104.863525391000053, + 12.257873535000044 + ], + [ + 104.862304687000062, + 12.260498047000056 + ], + [ + 104.861328125000057, + 12.263488770000038 + ], + [ + 104.860107422000056, + 12.268310547000056 + ], + [ + 104.858276367000087, + 12.272705078000058 + ], + [ + 104.857910156000059, + 12.277099609000061 + ], + [ + 104.856506348000039, + 12.281127930000025 + ], + [ + 104.852905273000033, + 12.283874512000068 + ], + [ + 104.851318359000061, + 12.287109375000057 + ], + [ + 104.852111816000047, + 12.29132080100004 + ], + [ + 104.854675293000071, + 12.295288086000028 + ], + [ + 104.853698730000076, + 12.299499512000068 + ], + [ + 104.851928711000085, + 12.303100586000028 + ], + [ + 104.854309082000043, + 12.305480957000043 + ], + [ + 104.857482910000044, + 12.309082031000059 + ], + [ + 104.85968017600004, + 12.312316895000038 + ], + [ + 104.861877441000047, + 12.315917969000054 + ], + [ + 104.862487793000071, + 12.319274902000075 + ], + [ + 104.862670898000033, + 12.323730469000054 + ], + [ + 104.865722656000059, + 12.325317383000026 + ], + [ + 104.868713379000042, + 12.325683594000054 + ], + [ + 104.871520996000072, + 12.330078125000057 + ], + [ + 104.87530517600004, + 12.333496094000054 + ], + [ + 104.879089355000076, + 12.337524414000029 + ], + [ + 104.882873535000044, + 12.339721680000025 + ], + [ + 104.885681152000075, + 12.340270996000072 + ], + [ + 104.889099121000072, + 12.34069824200003 + ], + [ + 104.892517090000069, + 12.342712402000075 + ], + [ + 104.893493652000075, + 12.345520020000038 + ], + [ + 104.894714355000076, + 12.348327637000068 + ], + [ + 104.893920898000033, + 12.351501465000069 + ], + [ + 104.891113281000059, + 12.354309082000043 + ], + [ + 104.893310547000056, + 12.35772705100004 + ], + [ + 104.896301270000038, + 12.360473633000026 + ], + [ + 104.897277832000043, + 12.363708496000072 + ], + [ + 104.899108887000068, + 12.366271973000039 + ], + [ + 104.900329590000069, + 12.369689941000047 + ], + [ + 104.898498535000044, + 12.372314453000058 + ], + [ + 104.898315430000082, + 12.375488281000059 + ], + [ + 104.894897461000085, + 12.377929687000062 + ], + [ + 104.893920898000033, + 12.382507324000073 + ], + [ + 104.895324707000043, + 12.386108398000033 + ], + [ + 104.896301270000038, + 12.389099121000072 + ], + [ + 104.895690918000071, + 12.392700195000032 + ], + [ + 104.894104004000042, + 12.396118164000029 + ], + [ + 104.89093017600004, + 12.400329590000069 + ], + [ + 104.886474609000061, + 12.396118164000029 + ], + [ + 104.884521484000061, + 12.39288330100004 + ], + [ + 104.885925293000071, + 12.390319824000073 + ], + [ + 104.88507080100004, + 12.385925293000071 + ], + [ + 104.882873535000044, + 12.38171386700003 + ], + [ + 104.879882812000062, + 12.380676270000038 + ], + [ + 104.877075195000089, + 12.379272461000028 + ], + [ + 104.874084473000039, + 12.376708984000061 + ], + [ + 104.873107910000044, + 12.373474121000072 + ], + [ + 104.869873047000056, + 12.372070312000062 + ], + [ + 104.867309570000089, + 12.373474121000072 + ], + [ + 104.865112305000082, + 12.370483398000033 + ], + [ + 104.862121582000043, + 12.370910645000038 + ], + [ + 104.863098145000038, + 12.374694824000073 + ], + [ + 104.860717773000033, + 12.380126953000058 + ], + [ + 104.861511230000076, + 12.384277344000054 + ], + [ + 104.860717773000033, + 12.389709473000039 + ], + [ + 104.865295410000044, + 12.394470215000069 + ], + [ + 104.866516113000046, + 12.399108887000068 + ], + [ + 104.865722656000059, + 12.406677246000072 + ], + [ + 104.867126465000069, + 12.410278320000032 + ], + [ + 104.865112305000082, + 12.414672852000024 + ], + [ + 104.862670898000033, + 12.417480469000054 + ], + [ + 104.863708496000072, + 12.420715332000043 + ], + [ + 104.861328125000057, + 12.422302246000072 + ], + [ + 104.861694336000085, + 12.425903320000032 + ], + [ + 104.860473633000083, + 12.429321289000029 + ], + [ + 104.855529785000044, + 12.427490234000061 + ], + [ + 104.851928711000085, + 12.426330566000047 + ], + [ + 104.849304199000073, + 12.427490234000061 + ], + [ + 104.845886230000076, + 12.430114746000072 + ], + [ + 104.842712402000075, + 12.434326172000056 + ], + [ + 104.843688965000069, + 12.437683105000076 + ], + [ + 104.842529297000056, + 12.441528320000032 + ], + [ + 104.838684082000043, + 12.44171142600004 + ], + [ + 104.836486816000047, + 12.443725586000028 + ], + [ + 104.840087891000053, + 12.446289062000062 + ], + [ + 104.841918945000089, + 12.450317383000026 + ], + [ + 104.839111328000058, + 12.450927734000061 + ], + [ + 104.836120605000076, + 12.451721191000047 + ], + [ + 104.833679199000073, + 12.455688477000024 + ], + [ + 104.832885742000087, + 12.460083008000026 + ], + [ + 104.830505371000072, + 12.462524414000029 + ], + [ + 104.828308105000076, + 12.465881348000039 + ], + [ + 104.832275391000053, + 12.468322754000042 + ], + [ + 104.836486816000047, + 12.469299316000047 + ], + [ + 104.840698242000087, + 12.470275879000042 + ], + [ + 104.840881348000039, + 12.474487305000025 + ], + [ + 104.837524414000086, + 12.478271484000061 + ], + [ + 104.833312988000046, + 12.478271484000061 + ], + [ + 104.830688477000081, + 12.477111816000047 + ], + [ + 104.827880859000061, + 12.478088379000042 + ], + [ + 104.825927734000061, + 12.480285645000038 + ], + [ + 104.822509766000053, + 12.481506348000039 + ], + [ + 104.818481445000089, + 12.481872559000067 + ], + [ + 104.815917969000054, + 12.485107422000056 + ], + [ + 104.814880371000072, + 12.488525391000053 + ], + [ + 104.815490723000039, + 12.491699219000054 + ], + [ + 104.818481445000089, + 12.493286133000026 + ], + [ + 104.821716309000067, + 12.494079590000069 + ], + [ + 104.822326660000044, + 12.497497559000067 + ], + [ + 104.82452392600004, + 12.499328613000046 + ], + [ + 104.825500488000046, + 12.502502441000047 + ], + [ + 104.823913574000073, + 12.505676270000038 + ], + [ + 104.822326660000044, + 12.508483887000068 + ], + [ + 104.824707031000059, + 12.511718750000057 + ], + [ + 104.825927734000061, + 12.514892578000058 + ], + [ + 104.826293945000089, + 12.51788330100004 + ], + [ + 104.827880859000061, + 12.522277832000043 + ], + [ + 104.824707031000059, + 12.525512695000032 + ], + [ + 104.820922852000081, + 12.528320312000062 + ], + [ + 104.820678711000085, + 12.53210449200003 + ], + [ + 104.817077637000068, + 12.531921387000068 + ], + [ + 104.794128418000071, + 12.537475586000028 + ], + [ + 104.763305664000086, + 12.545715332000043 + ], + [ + 104.745910645000038, + 12.549926758000026 + ], + [ + 104.742309570000089, + 12.551330566000047 + ], + [ + 104.738708496000072, + 12.553100586000028 + ], + [ + 104.736083984000061, + 12.554504395000038 + ], + [ + 104.73272705100004, + 12.556274414000029 + ], + [ + 104.729675293000071, + 12.558471680000025 + ], + [ + 104.726074219000054, + 12.560119629000042 + ], + [ + 104.723083496000072, + 12.562072754000042 + ], + [ + 104.719482422000056, + 12.564880371000072 + ], + [ + 104.716918945000089, + 12.56671142600004 + ], + [ + 104.712890625000057, + 12.56671142600004 + ], + [ + 104.711303711000085, + 12.569702148000033 + ], + [ + 104.707702637000068, + 12.572082520000038 + ], + [ + 104.705322266000053, + 12.573913574000073 + ], + [ + 104.702697754000042, + 12.575500488000046 + ], + [ + 104.698303223000039, + 12.577880859000061 + ], + [ + 104.695312500000057, + 12.579711914000029 + ], + [ + 104.692504883000083, + 12.580871582000043 + ], + [ + 104.689270020000038, + 12.582702637000068 + ], + [ + 104.685485840000069, + 12.58428955100004 + ], + [ + 104.682312012000068, + 12.585693359000061 + ], + [ + 104.678527832000043, + 12.587524414000029 + ], + [ + 104.672912598000039, + 12.588684082000043 + ], + [ + 104.668090820000089, + 12.589904785000044 + ], + [ + 104.664306641000053, + 12.591308594000054 + ], + [ + 104.659729004000042, + 12.592895508000026 + ], + [ + 104.654479980000076, + 12.594909668000071 + ], + [ + 104.650329590000069, + 12.597290039000029 + ], + [ + 104.647277832000043, + 12.598876953000058 + ], + [ + 104.644104004000042, + 12.600280762000068 + ], + [ + 104.64093017600004, + 12.601928711000028 + ], + [ + 104.635925293000071, + 12.604309082000043 + ], + [ + 104.631713867000087, + 12.606079102000024 + ], + [ + 104.627929687000062, + 12.607299805000025 + ], + [ + 104.624084473000039, + 12.606689453000058 + ], + [ + 104.621093750000057, + 12.605712891000053 + ], + [ + 104.617919922000056, + 12.604919434000067 + ], + [ + 104.613708496000072, + 12.604309082000043 + ], + [ + 104.60968017600004, + 12.603271484000061 + ], + [ + 104.606872559000067, + 12.602294922000056 + ], + [ + 104.603698730000076, + 12.602294922000056 + ], + [ + 104.598693848000039, + 12.602722168000071 + ], + [ + 104.594909668000071, + 12.602722168000071 + ], + [ + 104.591674805000082, + 12.601501465000069 + ], + [ + 104.587707520000038, + 12.598693848000039 + ], + [ + 104.582519531000059, + 12.595520020000038 + ], + [ + 104.577697754000042, + 12.593688965000069 + ], + [ + 104.573120117000087, + 12.593505859000061 + ], + [ + 104.569702148000033, + 12.593078613000046 + ], + [ + 104.566284180000082, + 12.59210205100004 + ], + [ + 104.563476562000062, + 12.590881348000039 + ], + [ + 104.560729980000076, + 12.589904785000044 + ], + [ + 104.557312012000068, + 12.588500977000024 + ], + [ + 104.554077148000033, + 12.587097168000071 + ], + [ + 104.550476074000073, + 12.585083008000026 + ], + [ + 104.546691895000038, + 12.583312988000046 + ], + [ + 104.543701172000056, + 12.582702637000068 + ], + [ + 104.540893555000082, + 12.581115723000039 + ], + [ + 104.537109375000057, + 12.578308105000076 + ], + [ + 104.534118652000075, + 12.576110840000069 + ], + [ + 104.530090332000043, + 12.574096680000025 + ], + [ + 104.526672363000046, + 12.571899414000029 + ], + [ + 104.523925781000059, + 12.570312500000057 + ], + [ + 104.520874023000033, + 12.568725586000028 + ], + [ + 104.51788330100004, + 12.565490723000039 + ], + [ + 104.515502930000082, + 12.560729980000076 + ], + [ + 104.511291504000042, + 12.559692383000026 + ], + [ + 104.513305664000086, + 12.557312012000068 + ], + [ + 104.514526367000087, + 12.553100586000028 + ], + [ + 104.515075684000067, + 12.549316406000059 + ], + [ + 104.514892578000058, + 12.545715332000043 + ], + [ + 104.514099121000072, + 12.542480469000054 + ], + [ + 104.513305664000086, + 12.538513184000067 + ], + [ + 104.509521484000061, + 12.537292480000076 + ], + [ + 104.507507324000073, + 12.533081055000025 + ], + [ + 104.505310059000067, + 12.529479980000076 + ], + [ + 104.503906250000057, + 12.525512695000032 + ], + [ + 104.502929687000062, + 12.522094727000024 + ], + [ + 104.501098633000083, + 12.519897461000028 + ], + [ + 104.496887207000043, + 12.520324707000043 + ], + [ + 104.493103027000075, + 12.520507812000062 + ], + [ + 104.490112305000082, + 12.522277832000043 + ], + [ + 104.486877441000047, + 12.523071289000029 + ], + [ + 104.484497070000032, + 12.525329590000069 + ], + [ + 104.481689453000058, + 12.526916504000042 + ], + [ + 104.478515625000057, + 12.528686523000033 + ], + [ + 104.478881836000085, + 12.532470703000058 + ], + [ + 104.482482910000044, + 12.534301758000026 + ], + [ + 104.485290527000075, + 12.530090332000043 + ], + [ + 104.487487793000071, + 12.526916504000042 + ], + [ + 104.488098145000038, + 12.530883789000029 + ], + [ + 104.491699219000054, + 12.529296875000057 + ], + [ + 104.493286133000083, + 12.526306152000075 + ], + [ + 104.495117187000062, + 12.528503418000071 + ], + [ + 104.496887207000043, + 12.531127930000025 + ], + [ + 104.500122070000032, + 12.532714844000054 + ], + [ + 104.497314453000058, + 12.535095215000069 + ], + [ + 104.494689941000047, + 12.538513184000067 + ], + [ + 104.489685059000067, + 12.540527344000054 + ], + [ + 104.484313965000069, + 12.539489746000072 + ], + [ + 104.479492187000062, + 12.538085937000062 + ], + [ + 104.475891113000046, + 12.537719727000024 + ], + [ + 104.474304199000073, + 12.535095215000069 + ], + [ + 104.471923828000058, + 12.53350830100004 + ], + [ + 104.468872070000032, + 12.531311035000044 + ], + [ + 104.466491699000073, + 12.529296875000057 + ], + [ + 104.463928223000039, + 12.527893066000047 + ], + [ + 104.460327148000033, + 12.525878906000059 + ], + [ + 104.455322266000053, + 12.525085449000073 + ], + [ + 104.450500488000046, + 12.526123047000056 + ], + [ + 104.447509766000053, + 12.528076172000056 + ], + [ + 104.446289062000062, + 12.532287598000039 + ], + [ + 104.443115234000061, + 12.531677246000072 + ], + [ + 104.439697266000053, + 12.535095215000069 + ], + [ + 104.436889648000033, + 12.536926270000038 + ], + [ + 104.43389892600004, + 12.537719727000024 + ], + [ + 104.430908203000058, + 12.538879395000038 + ], + [ + 104.428894043000071, + 12.541503906000059 + ], + [ + 104.42608642600004, + 12.54327392600004 + ], + [ + 104.421691895000038, + 12.545104980000076 + ], + [ + 104.417297363000046, + 12.546691895000038 + ], + [ + 104.419494629000042, + 12.54327392600004 + ], + [ + 104.423095703000058, + 12.540893555000025 + ], + [ + 104.426330566000047, + 12.538085937000062 + ], + [ + 104.428283691000047, + 12.534301758000026 + ], + [ + 104.424316406000059, + 12.534301758000026 + ], + [ + 104.420715332000043, + 12.536315918000071 + ], + [ + 104.417114258000083, + 12.537109375000057 + ], + [ + 104.413696289000086, + 12.537902832000043 + ], + [ + 104.410278320000032, + 12.538513184000067 + ], + [ + 104.407104492000087, + 12.54132080100004 + ], + [ + 104.404724121000072, + 12.545288086000028 + ], + [ + 104.402893066000047, + 12.548889160000044 + ], + [ + 104.401916504000042, + 12.552490234000061 + ], + [ + 104.401489258000083, + 12.555725098000039 + ], + [ + 104.402526855000076, + 12.55889892600004 + ], + [ + 104.405517578000058, + 12.562316895000038 + ], + [ + 104.410278320000032, + 12.563903809000067 + ], + [ + 104.414123535000044, + 12.563476562000062 + ], + [ + 104.417114258000083, + 12.562072754000042 + ], + [ + 104.420471191000047, + 12.561279297000056 + ], + [ + 104.422302246000072, + 12.558471680000025 + ], + [ + 104.424316406000059, + 12.556274414000029 + ], + [ + 104.427490234000061, + 12.553894043000071 + ], + [ + 104.428894043000071, + 12.550720215000069 + ], + [ + 104.431701660000044, + 12.552124023000033 + ], + [ + 104.435302734000061, + 12.550720215000069 + ], + [ + 104.439270020000038, + 12.552673340000069 + ], + [ + 104.442687988000046, + 12.551330566000047 + ], + [ + 104.444091797000056, + 12.548095703000058 + ], + [ + 104.446899414000086, + 12.547119141000053 + ], + [ + 104.449890137000068, + 12.546508789000029 + ], + [ + 104.453125, + 12.544311523000033 + ], + [ + 104.454101562000062, + 12.547302246000072 + ], + [ + 104.456481934000067, + 12.545288086000028 + ], + [ + 104.460510254000042, + 12.54327392600004 + ], + [ + 104.465270996000072, + 12.54772949200003 + ], + [ + 104.467529297000056, + 12.544311523000033 + ], + [ + 104.471923828000058, + 12.545898437000062 + ], + [ + 104.476684570000032, + 12.546325684000067 + ], + [ + 104.480285645000038, + 12.546875 + ], + [ + 104.482299805000082, + 12.551513672000056 + ], + [ + 104.484130859000061, + 12.554504395000038 + ], + [ + 104.485290527000075, + 12.557128906000059 + ], + [ + 104.486694336000085, + 12.559692383000026 + ], + [ + 104.486511230000076, + 12.562927246000072 + ], + [ + 104.484130859000061, + 12.565917969000054 + ], + [ + 104.484130859000061, + 12.569702148000033 + ], + [ + 104.483276367000087, + 12.572509766000053 + ], + [ + 104.480712891000053, + 12.574279785000044 + ], + [ + 104.477722168000071, + 12.575927734000061 + ], + [ + 104.473693848000039, + 12.577514648000033 + ], + [ + 104.471313477000081, + 12.579895020000038 + ], + [ + 104.469726562000062, + 12.58288574200003 + ], + [ + 104.46710205100004, + 12.586303711000028 + ], + [ + 104.464904785000044, + 12.58288574200003 + ], + [ + 104.460510254000042, + 12.586730957000043 + ], + [ + 104.457275391000053, + 12.590270996000072 + ], + [ + 104.454711914000086, + 12.593872070000032 + ], + [ + 104.45147705100004, + 12.596313477000024 + ], + [ + 104.447082520000038, + 12.597900391000053 + ], + [ + 104.446472168000071, + 12.602111816000047 + ], + [ + 104.448730469000054, + 12.604125977000024 + ], + [ + 104.451293945000032, + 12.605895996000072 + ], + [ + 104.454101562000062, + 12.606689453000058 + ], + [ + 104.455505371000072, + 12.610717773000033 + ], + [ + 104.458923340000069, + 12.612915039000029 + ], + [ + 104.461730957000043, + 12.613891602000024 + ], + [ + 104.464294434000067, + 12.615295410000044 + ], + [ + 104.463928223000039, + 12.618896484000061 + ], + [ + 104.466308594000054, + 12.623474121000072 + ], + [ + 104.467712402000075, + 12.629089355000076 + ], + [ + 104.468505859000061, + 12.633483887000068 + ], + [ + 104.469299316000047, + 12.636901855000076 + ], + [ + 104.470703125000057, + 12.640502930000025 + ], + [ + 104.472290039000086, + 12.644714355000076 + ], + [ + 104.473693848000039, + 12.648925781000059 + ], + [ + 104.474670410000044, + 12.653320312000062 + ], + [ + 104.474487305000082, + 12.656311035000044 + ], + [ + 104.474670410000044, + 12.661315918000071 + ], + [ + 104.474670410000044, + 12.666687012000068 + ], + [ + 104.476501465000069, + 12.670471191000047 + ], + [ + 104.475280762000068, + 12.674072266000053 + ], + [ + 104.474304199000073, + 12.679321289000029 + ], + [ + 104.473876953000058, + 12.683471680000025 + ], + [ + 104.473327637000068, + 12.687316895000038 + ], + [ + 104.473327637000068, + 12.691528320000032 + ], + [ + 104.472473145000038, + 12.695495605000076 + ], + [ + 104.471496582000043, + 12.699707031000059 + ], + [ + 104.471313477000081, + 12.704101562000062 + ], + [ + 104.468505859000061, + 12.708923340000069 + ], + [ + 104.466918945000032, + 12.712890625000057 + ], + [ + 104.465698242000087, + 12.715881348000039 + ], + [ + 104.463928223000039, + 12.719726562000062 + ], + [ + 104.462280273000033, + 12.722290039000029 + ], + [ + 104.460693359000061, + 12.725524902000075 + ], + [ + 104.459472656000059, + 12.728881836000028 + ], + [ + 104.457519531000059, + 12.731689453000058 + ], + [ + 104.454895020000038, + 12.735107422000056 + ], + [ + 104.452514648000033, + 12.738098145000038 + ], + [ + 104.449707031000059, + 12.741516113000046 + ], + [ + 104.446289062000062, + 12.744079590000069 + ], + [ + 104.442321777000075, + 12.746520996000072 + ], + [ + 104.438903809000067, + 12.747680664000029 + ], + [ + 104.435485840000069, + 12.749328613000046 + ], + [ + 104.431701660000044, + 12.750671387000068 + ], + [ + 104.427490234000061, + 12.752502441000047 + ], + [ + 104.423522949000073, + 12.752685547000056 + ], + [ + 104.420471191000047, + 12.753112793000071 + ], + [ + 104.416870117000087, + 12.753906250000057 + ], + [ + 104.413696289000086, + 12.756103516000053 + ], + [ + 104.410278320000032, + 12.757324219000054 + ], + [ + 104.406127930000082, + 12.758728027000075 + ], + [ + 104.402526855000076, + 12.758728027000075 + ], + [ + 104.398498535000044, + 12.758728027000075 + ], + [ + 104.394470215000069, + 12.75811767600004 + ], + [ + 104.390686035000044, + 12.757324219000054 + ], + [ + 104.387084961000085, + 12.75671386700003 + ], + [ + 104.382873535000044, + 12.755920410000044 + ], + [ + 104.379089355000076, + 12.754882812000062 + ], + [ + 104.375122070000032, + 12.753723145000038 + ], + [ + 104.371093750000057, + 12.752502441000047 + ], + [ + 104.367675781000059, + 12.751281738000046 + ], + [ + 104.364074707000043, + 12.750122070000032 + ], + [ + 104.359130859000061, + 12.748107910000044 + ], + [ + 104.354675293000071, + 12.746704102000024 + ], + [ + 104.350280762000068, + 12.745117187000062 + ], + [ + 104.344726562000062, + 12.743713379000042 + ], + [ + 104.339904785000044, + 12.741882324000073 + ], + [ + 104.336914062000062, + 12.741271973000039 + ], + [ + 104.334106445000032, + 12.740722656000059 + ], + [ + 104.330078125000057, + 12.739318848000039 + ], + [ + 104.326293945000032, + 12.738098145000038 + ], + [ + 104.322692871000072, + 12.736694336000028 + ], + [ + 104.318298340000069, + 12.734924316000047 + ], + [ + 104.314880371000072, + 12.733886719000054 + ], + [ + 104.311096191000047, + 12.733093262000068 + ], + [ + 104.307922363000046, + 12.732482910000044 + ], + [ + 104.304077148000033, + 12.73272705100004 + ], + [ + 104.300903320000032, + 12.732910156000059 + ], + [ + 104.296325684000067, + 12.733520508000026 + ], + [ + 104.29132080100004, + 12.733886719000054 + ], + [ + 104.286926270000038, + 12.733703613000046 + ], + [ + 104.281677246000072, + 12.733093262000068 + ], + [ + 104.277282715000069, + 12.733093262000068 + ], + [ + 104.273681641000053, + 12.732910156000059 + ], + [ + 104.269897461000085, + 12.73272705100004 + ], + [ + 104.265319824000073, + 12.73272705100004 + ], + [ + 104.260498047000056, + 12.732482910000044 + ], + [ + 104.256896973000039, + 12.73272705100004 + ], + [ + 104.255310059000067, + 12.735473633000026 + ], + [ + 104.250488281000059, + 12.735290527000075 + ], + [ + 104.246520996000072, + 12.737304687000062 + ], + [ + 104.223083496000072, + 12.744079590000069 + ], + [ + 104.222106934000067, + 12.747070312000062 + ], + [ + 104.220703125000057, + 12.750915527000075 + ], + [ + 104.218872070000032, + 12.753723145000038 + ], + [ + 104.217529297000056, + 12.757080078000058 + ], + [ + 104.216491699000073, + 12.760925293000071 + ], + [ + 104.215881348000039, + 12.765075684000067 + ], + [ + 104.214904785000044, + 12.770324707000043 + ], + [ + 104.212890625000057, + 12.774719238000046 + ], + [ + 104.211486816000047, + 12.778076172000056 + ], + [ + 104.209899902000075, + 12.78210449200003 + ], + [ + 104.211303711000085, + 12.785888672000056 + ], + [ + 104.212707520000038, + 12.789489746000072 + ], + [ + 104.214294434000067, + 12.79187011700003 + ], + [ + 104.216125488000046, + 12.794311523000033 + ], + [ + 104.219482422000056, + 12.795898437000062 + ], + [ + 104.221130371000072, + 12.799926758000026 + ], + [ + 104.224304199000073, + 12.799072266000053 + ], + [ + 104.228088379000042, + 12.798522949000073 + ], + [ + 104.228881836000085, + 12.801330566000047 + ], + [ + 104.227111816000047, + 12.804321289000029 + ], + [ + 104.229125977000081, + 12.807312012000068 + ], + [ + 104.232299805000082, + 12.808715820000032 + ], + [ + 104.232910156000059, + 12.811706543000071 + ], + [ + 104.232482910000044, + 12.814880371000072 + ], + [ + 104.234924316000047, + 12.81671142600004 + ], + [ + 104.237304687000062, + 12.819091797000056 + ], + [ + 104.239318848000039, + 12.822509766000053 + ], + [ + 104.242309570000032, + 12.826110840000069 + ], + [ + 104.244079590000069, + 12.828674316000047 + ], + [ + 104.244506836000085, + 12.831726074000073 + ], + [ + 104.246093750000057, + 12.83428955100004 + ], + [ + 104.248291016000053, + 12.837097168000071 + ], + [ + 104.251098633000083, + 12.840087891000053 + ], + [ + 104.253479004000042, + 12.842895508000026 + ], + [ + 104.256103516000053, + 12.846130371000072 + ], + [ + 104.259277344000054, + 12.848876953000058 + ], + [ + 104.261718750000057, + 12.851318359000061 + ], + [ + 104.265075684000067, + 12.854125977000024 + ], + [ + 104.268310547000056, + 12.856872559000067 + ], + [ + 104.26788330100004, + 12.861083984000061 + ], + [ + 104.267089844000054, + 12.864074707000043 + ], + [ + 104.270507812000062, + 12.866882324000073 + ], + [ + 104.274719238000046, + 12.864929199000073 + ], + [ + 104.278320312000062, + 12.865905762000068 + ], + [ + 104.281311035000044, + 12.869689941000047 + ], + [ + 104.280517578000058, + 12.874694824000073 + ], + [ + 104.285095215000069, + 12.876098633000026 + ], + [ + 104.289306641000053, + 12.877929687000062 + ], + [ + 104.292907715000069, + 12.877929687000062 + ], + [ + 104.296325684000067, + 12.876892090000069 + ], + [ + 104.299499512000068, + 12.878906250000057 + ], + [ + 104.303894043000071, + 12.879089355000076 + ], + [ + 104.307128906000059, + 12.882507324000073 + ], + [ + 104.308471680000082, + 12.885314941000047 + ], + [ + 104.312927246000072, + 12.884094238000046 + ], + [ + 104.317077637000068, + 12.884704590000069 + ], + [ + 104.319885254000042, + 12.886291504000042 + ], + [ + 104.322326660000044, + 12.888305664000029 + ], + [ + 104.325317383000083, + 12.889099121000072 + ], + [ + 104.329284668000071, + 12.89147949200003 + ], + [ + 104.33428955100004, + 12.895324707000043 + ], + [ + 104.339721680000082, + 12.897094727000024 + ], + [ + 104.344299316000047, + 12.897888184000067 + ], + [ + 104.347473145000038, + 12.897521973000039 + ], + [ + 104.351074219000054, + 12.895324707000043 + ], + [ + 104.353881836000085, + 12.898498535000044 + ], + [ + 104.357116699000073, + 12.900329590000069 + ], + [ + 104.360717773000033, + 12.901916504000042 + ], + [ + 104.363281250000057, + 12.905090332000043 + ], + [ + 104.365478516000053, + 12.909484863000046 + ], + [ + 104.367309570000032, + 12.913085937000062 + ], + [ + 104.368713379000042, + 12.915893555000025 + ], + [ + 104.370117187000062, + 12.919494629000042 + ], + [ + 104.369079590000069, + 12.922485352000024 + ], + [ + 104.368530273000033, + 12.925903320000032 + ], + [ + 104.370727539000086, + 12.929321289000029 + ], + [ + 104.371704102000081, + 12.933105469000054 + ], + [ + 104.374328613000046, + 12.936279297000056 + ], + [ + 104.377319336000085, + 12.937316895000038 + ], + [ + 104.379272461000085, + 12.940673828000058 + ], + [ + 104.382507324000073, + 12.945495605000076 + ], + [ + 104.386108398000033, + 12.948303223000039 + ], + [ + 104.388671875000057, + 12.951293945000032 + ], + [ + 104.392517090000069, + 12.955322266000053 + ], + [ + 104.396911621000072, + 12.954711914000029 + ], + [ + 104.400878906000059, + 12.956909180000025 + ], + [ + 104.404113770000038, + 12.960083008000026 + ], + [ + 104.405883789000086, + 12.963073730000076 + ], + [ + 104.407714844000054, + 12.966125488000046 + ], + [ + 104.409118652000075, + 12.968688965000069 + ], + [ + 104.411071777000075, + 12.971496582000043 + ], + [ + 104.413513184000067, + 12.974670410000044 + ], + [ + 104.415893555000082, + 12.978271484000061 + ], + [ + 104.41827392600004, + 12.981079102000024 + ], + [ + 104.420898437000062, + 12.983886719000054 + ], + [ + 104.424072266000053, + 12.986328125000057 + ], + [ + 104.427490234000061, + 12.986083984000061 + ], + [ + 104.430725098000039, + 12.985473633000026 + ], + [ + 104.433715820000032, + 12.985290527000075 + ], + [ + 104.436706543000071, + 12.984497070000032 + ], + [ + 104.440124512000068, + 12.985900879000042 + ], + [ + 104.443298340000069, + 12.989074707000043 + ], + [ + 104.445678711000085, + 12.993896484000061 + ], + [ + 104.446716309000067, + 12.998107910000044 + ], + [ + 104.448730469000054, + 13.001708984000061 + ], + [ + 104.452270508000083, + 13.002929687000062 + ], + [ + 104.456115723000039, + 13.001525879000042 + ], + [ + 104.457519531000059, + 13.006103516000053 + ], + [ + 104.458679199000073, + 13.009277344000054 + ], + [ + 104.460510254000042, + 13.012084961000028 + ], + [ + 104.459899902000075, + 13.015502930000025 + ], + [ + 104.456298828000058, + 13.01788330100004 + ], + [ + 104.453491211000085, + 13.020507812000062 + ], + [ + 104.452270508000083, + 13.023925781000059 + ], + [ + 104.453308105000076, + 13.029907227000024 + ], + [ + 104.452697754000042, + 13.035705566000047 + ], + [ + 104.453674316000047, + 13.040283203000058 + ], + [ + 104.454711914000086, + 13.044128418000071 + ], + [ + 104.458312988000046, + 13.046508789000029 + ], + [ + 104.460876465000069, + 13.049499512000068 + ], + [ + 104.465515137000068, + 13.047912598000039 + ], + [ + 104.466491699000073, + 13.052490234000061 + ], + [ + 104.466491699000073, + 13.056884766000053 + ], + [ + 104.466125488000046, + 13.060913086000028 + ], + [ + 104.466308594000054, + 13.064086914000029 + ], + [ + 104.46710205100004, + 13.068115234000061 + ], + [ + 104.468322754000042, + 13.073303223000039 + ], + [ + 104.469116211000085, + 13.078125 + ], + [ + 104.469909668000071, + 13.082702637000068 + ], + [ + 104.470703125000057, + 13.087097168000071 + ], + [ + 104.470703125000057, + 13.092712402000075 + ], + [ + 104.470520020000038, + 13.097473145000038 + ], + [ + 104.470886230000076, + 13.100891113000046 + ], + [ + 104.471679687000062, + 13.106079102000024 + ], + [ + 104.471923828000058, + 13.110900879000042 + ], + [ + 104.471679687000062, + 13.114501953000058 + ], + [ + 104.471313477000081, + 13.118103027000075 + ], + [ + 104.470886230000076, + 13.121887207000043 + ], + [ + 104.470703125000057, + 13.126708984000061 + ], + [ + 104.472106934000067, + 13.131530762000068 + ], + [ + 104.473693848000039, + 13.135681152000075 + ], + [ + 104.474670410000044, + 13.13952636700003 + ], + [ + 104.472900391000053, + 13.142700195000032 + ], + [ + 104.473327637000068, + 13.146728516000053 + ], + [ + 104.471679687000062, + 13.150512695000032 + ], + [ + 104.471679687000062, + 13.153930664000029 + ], + [ + 104.472106934000067, + 13.156921387000068 + ], + [ + 104.472900391000053, + 13.160095215000069 + ], + [ + 104.474304199000073, + 13.164123535000044 + ], + [ + 104.475891113000046, + 13.167907715000069 + ], + [ + 104.477294922000056, + 13.172119141000053 + ], + [ + 104.479309082000043, + 13.176696777000075 + ], + [ + 104.481872559000067, + 13.179870605000076 + ], + [ + 104.484130859000061, + 13.181884766000053 + ], + [ + 104.487670898000033, + 13.183471680000025 + ], + [ + 104.492126465000069, + 13.184082031000059 + ], + [ + 104.496704102000081, + 13.184875488000046 + ], + [ + 104.501708984000061, + 13.188720703000058 + ], + [ + 104.506103516000053, + 13.192321777000075 + ], + [ + 104.511291504000042, + 13.194702148000033 + ], + [ + 104.514282227000081, + 13.195678711000028 + ], + [ + 104.518676758000083, + 13.196899414000029 + ], + [ + 104.524108887000068, + 13.198730469000054 + ], + [ + 104.528686523000033, + 13.200317383000026 + ], + [ + 104.531921387000068, + 13.200927734000061 + ], + [ + 104.537109375000057, + 13.202880859000061 + ], + [ + 104.540710449000073, + 13.203674316000047 + ], + [ + 104.545104980000076, + 13.204895020000038 + ], + [ + 104.549072266000053, + 13.207092285000044 + ], + [ + 104.552124023000033, + 13.213073730000076 + ], + [ + 104.553527832000043, + 13.216125488000046 + ], + [ + 104.555480957000043, + 13.221130371000072 + ], + [ + 104.557312012000068, + 13.225708008000026 + ], + [ + 104.558715820000032, + 13.229919434000067 + ], + [ + 104.560302734000061, + 13.235107422000056 + ], + [ + 104.561889648000033, + 13.239318848000039 + ], + [ + 104.563903809000067, + 13.245117187000062 + ], + [ + 104.564514160000044, + 13.249084473000039 + ], + [ + 104.565490723000039, + 13.253112793000071 + ], + [ + 104.569091797000056, + 13.251892090000069 + ], + [ + 104.573303223000039, + 13.252075195000032 + ], + [ + 104.582092285000044, + 13.253479004000042 + ], + [ + 104.588928223000039, + 13.254699707000043 + ], + [ + 104.594909668000071, + 13.255676270000038 + ], + [ + 104.600280762000068, + 13.257080078000058 + ], + [ + 104.604309082000043, + 13.258300781000059 + ], + [ + 104.609313965000069, + 13.259277344000054 + ], + [ + 104.615478516000053, + 13.260925293000071 + ], + [ + 104.620483398000033, + 13.262512207000043 + ], + [ + 104.626281738000046, + 13.264709473000039 + ], + [ + 104.632690430000082, + 13.266723633000026 + ], + [ + 104.636108398000033, + 13.26788330100004 + ], + [ + 104.640075684000067, + 13.269104004000042 + ], + [ + 104.646118164000086, + 13.271118164000029 + ], + [ + 104.650329590000069, + 13.272521973000039 + ], + [ + 104.654296875000057, + 13.274108887000068 + ], + [ + 104.659484863000046, + 13.276306152000075 + ], + [ + 104.662292480000076, + 13.277282715000069 + ], + [ + 104.665283203000058, + 13.278503418000071 + ], + [ + 104.669494629000042, + 13.280517578000058 + ], + [ + 104.673278809000067, + 13.28210449200003 + ], + [ + 104.677307129000042, + 13.285705566000047 + ], + [ + 104.681091309000067, + 13.288085937000062 + ], + [ + 104.685302734000061, + 13.290100098000039 + ], + [ + 104.688293457000043, + 13.29132080100004 + ], + [ + 104.692321777000075, + 13.291687012000068 + ], + [ + 104.698120117000087, + 13.295471191000047 + ], + [ + 104.700683594000054, + 13.297485352000024 + ], + [ + 104.702880859000061, + 13.299316406000059 + ], + [ + 104.705322266000053, + 13.303100586000028 + ], + [ + 104.708679199000073, + 13.305725098000039 + ], + [ + 104.711914062000062, + 13.306701660000044 + ], + [ + 104.715515137000068, + 13.306884766000053 + ], + [ + 104.718505859000061, + 13.305908203000058 + ], + [ + 104.721679687000062, + 13.305114746000072 + ], + [ + 104.725708008000083, + 13.304870605000076 + ], + [ + 104.728515625000057, + 13.307312012000068 + ], + [ + 104.731323242000087, + 13.310119629000042 + ], + [ + 104.734924316000047, + 13.311096191000047 + ], + [ + 104.739318848000039, + 13.312072754000042 + ], + [ + 104.743103027000075, + 13.313476562000062 + ], + [ + 104.745910645000038, + 13.312683105000076 + ], + [ + 104.748718262000068, + 13.311279297000056 + ], + [ + 104.751892090000069, + 13.311279297000056 + ], + [ + 104.755310059000067, + 13.313110352000024 + ], + [ + 104.759887695000089, + 13.313903809000067 + ], + [ + 104.763916016000053, + 13.312316895000038 + ], + [ + 104.767272949000073, + 13.309692383000026 + ], + [ + 104.769104004000042, + 13.306274414000029 + ], + [ + 104.772277832000043, + 13.304504395000038 + ], + [ + 104.776306152000075, + 13.302307129000042 + ], + [ + 104.782287598000039, + 13.303100586000028 + ], + [ + 104.786071777000075, + 13.303894043000071 + ], + [ + 104.789306641000053, + 13.304077148000033 + ], + [ + 104.794311523000033, + 13.305114746000072 + ], + [ + 104.799316406000059, + 13.305114746000072 + ], + [ + 104.803894043000071, + 13.305480957000043 + ], + [ + 104.809509277000075, + 13.306274414000029 + ], + [ + 104.815307617000087, + 13.306884766000053 + ], + [ + 104.819885254000042, + 13.307312012000068 + ], + [ + 104.823120117000087, + 13.307922363000046 + ], + [ + 104.826293945000089, + 13.308105469000054 + ], + [ + 104.829895020000038, + 13.308471680000025 + ], + [ + 104.835327148000033, + 13.309326172000056 + ], + [ + 104.839111328000058, + 13.30889892600004 + ], + [ + 104.847900391000053, + 13.306701660000044 + ], + [ + 104.851928711000085, + 13.306518555000025 + ], + [ + 104.855102539000086, + 13.306518555000025 + ], + [ + 104.858703613000046, + 13.306884766000053 + ], + [ + 104.862670898000033, + 13.307312012000068 + ], + [ + 104.867309570000089, + 13.307922363000046 + ], + [ + 104.871887207000043, + 13.308471680000025 + ], + [ + 104.876098633000083, + 13.309082031000059 + ], + [ + 104.880920410000044, + 13.309509277000075 + ], + [ + 104.886291504000042, + 13.310119629000042 + ], + [ + 104.889526367000087, + 13.309509277000075 + ], + [ + 104.892700195000089, + 13.308105469000054 + ], + [ + 104.894897461000085, + 13.305297852000024 + ], + [ + 104.896728516000053, + 13.301879883000026 + ], + [ + 104.898498535000044, + 13.298278809000067 + ], + [ + 104.900085449000073, + 13.294311523000033 + ], + [ + 104.901306152000075, + 13.291503906000059 + ], + [ + 104.902099609000061, + 13.288513184000067 + ], + [ + 104.904296875000057, + 13.284912109000061 + ], + [ + 104.901916504000042, + 13.280700684000067 + ], + [ + 104.901123047000056, + 13.277526855000076 + ], + [ + 104.899719238000046, + 13.273681641000053 + ], + [ + 104.898315430000082, + 13.269897461000028 + ], + [ + 104.897277832000043, + 13.266906738000046 + ], + [ + 104.896118164000086, + 13.263305664000029 + ], + [ + 104.894897461000085, + 13.259094238000046 + ], + [ + 104.893676758000083, + 13.254089355000076 + ], + [ + 104.891906738000046, + 13.249694824000073 + ], + [ + 104.890075684000067, + 13.246276855000076 + ], + [ + 104.886718750000057, + 13.243103027000075 + ], + [ + 104.883483887000068, + 13.240478516000053 + ], + [ + 104.881713867000087, + 13.236877441000047 + ], + [ + 104.882080078000058, + 13.23272705100004 + ], + [ + 104.883300781000059, + 13.228698730000076 + ], + [ + 104.881530762000068, + 13.225708008000026 + ], + [ + 104.879272461000085, + 13.223693848000039 + ], + [ + 104.876708984000061, + 13.221679687000062 + ], + [ + 104.87530517600004, + 13.218872070000032 + ], + [ + 104.875122070000089, + 13.213500977000024 + ], + [ + 104.876525879000042, + 13.209472656000059 + ], + [ + 104.875488281000059, + 13.205322266000053 + ], + [ + 104.875488281000059, + 13.201721191000047 + ], + [ + 104.874511719000054, + 13.19812011700003 + ], + [ + 104.873718262000068, + 13.194702148000033 + ], + [ + 104.875122070000089, + 13.190124512000068 + ], + [ + 104.876281738000046, + 13.186096191000047 + ], + [ + 104.876525879000042, + 13.18249511700003 + ], + [ + 104.875915527000075, + 13.178710937000062 + ], + [ + 104.876708984000061, + 13.173278809000067 + ], + [ + 104.877502441000047, + 13.168884277000075 + ], + [ + 104.880310059000067, + 13.165283203000058 + ], + [ + 104.882690430000082, + 13.162902832000043 + ], + [ + 104.886291504000042, + 13.160522461000028 + ], + [ + 104.888671875000057, + 13.157287598000039 + ], + [ + 104.888488770000038, + 13.152526855000076 + ], + [ + 104.887512207000043, + 13.148315430000025 + ], + [ + 104.887878418000071, + 13.141296387000068 + ], + [ + 104.890686035000044, + 13.137878418000071 + ], + [ + 104.89288330100004, + 13.135681152000075 + ], + [ + 104.894897461000085, + 13.133300781000059 + ], + [ + 104.896728516000053, + 13.130310059000067 + ], + [ + 104.899108887000068, + 13.127929687000062 + ], + [ + 104.901489258000083, + 13.125488281000059 + ], + [ + 104.904296875000057, + 13.122070312000062 + ], + [ + 104.905090332000043, + 13.117309570000032 + ], + [ + 104.906921387000068, + 13.113525391000053 + ], + [ + 104.907470703000058, + 13.108520508000026 + ], + [ + 104.910278320000089, + 13.107116699000073 + ], + [ + 104.912292480000076, + 13.103698730000076 + ], + [ + 104.916076660000044, + 13.099670410000044 + ], + [ + 104.919494629000042, + 13.096679687000062 + ], + [ + 104.921325684000067, + 13.092285156000059 + ], + [ + 104.927490234000061, + 13.084899902000075 + ], + [ + 104.933715820000089, + 13.076293945000032 + ], + [ + 104.940307617000087, + 13.069274902000075 + ], + [ + 104.945678711000085, + 13.064086914000029 + ], + [ + 104.94952392600004, + 13.061279297000056 + ], + [ + 104.953918457000043, + 13.058105469000054 + ], + [ + 104.961120605000076, + 13.056518555000025 + ], + [ + 104.966308594000054, + 13.055480957000043 + ], + [ + 104.974304199000073, + 13.055480957000043 + ], + [ + 104.977111816000047, + 13.056274414000029 + ], + [ + 104.985290527000075, + 13.060913086000028 + ], + [ + 104.988891602000081, + 13.063293457000043 + ], + [ + 104.992126465000069, + 13.06530761700003 + ], + [ + 104.995483398000033, + 13.067871094000054 + ], + [ + 104.998474121000072, + 13.069702148000033 + ], + [ + 105.001708984000061, + 13.071289062000062 + ], + [ + 105.005126953000058, + 13.073486328000058 + ], + [ + 105.00811767600004, + 13.076110840000069 + ], + [ + 105.011718750000057, + 13.078674316000047 + ], + [ + 105.014526367000087, + 13.080871582000043 + ], + [ + 105.017700195000089, + 13.083129883000026 + ], + [ + 105.021911621000072, + 13.086303711000028 + ], + [ + 105.024902344000054, + 13.088684082000043 + ], + [ + 105.028076172000056, + 13.090515137000068 + ], + [ + 105.031127930000082, + 13.093078613000046 + ], + [ + 105.033874512000068, + 13.095520020000038 + ], + [ + 105.036682129000042, + 13.097717285000044 + ], + [ + 105.04132080100004, + 13.101074219000054 + ], + [ + 105.046081543000071, + 13.104125977000024 + ], + [ + 105.049682617000087, + 13.106872559000067 + ], + [ + 105.054077148000033, + 13.110473633000026 + ], + [ + 105.056274414000086, + 13.112304687000062 + ], + [ + 105.059509277000075, + 13.114685059000067 + ], + [ + 105.063110352000081, + 13.116699219000054 + ], + [ + 105.067077637000068, + 13.119323730000076 + ], + [ + 105.070312500000057, + 13.120483398000033 + ], + [ + 105.072509766000053, + 13.122314453000058 + ], + [ + 105.076721191000047, + 13.124694824000073 + ], + [ + 105.081726074000073, + 13.127075195000032 + ], + [ + 105.084472656000059, + 13.128479004000042 + ], + [ + 105.087524414000086, + 13.129699707000043 + ], + [ + 105.091918945000089, + 13.131896973000039 + ], + [ + 105.094726562000062, + 13.133300781000059 + ], + [ + 105.097900391000053, + 13.13507080100004 + ], + [ + 105.101928711000085, + 13.137084961000028 + ], + [ + 105.105102539000086, + 13.138916016000053 + ], + [ + 105.109497070000089, + 13.141296387000068 + ], + [ + 105.112304687000062, + 13.142700195000032 + ], + [ + 105.115112305000082, + 13.144287109000061 + ], + [ + 105.118713379000042, + 13.146728516000053 + ], + [ + 105.123107910000044, + 13.149475098000039 + ], + [ + 105.126525879000042, + 13.151672363000046 + ], + [ + 105.130310059000067, + 13.154724121000072 + ], + [ + 105.134521484000061, + 13.157897949000073 + ], + [ + 105.137329102000081, + 13.159729004000042 + ], + [ + 105.139892578000058, + 13.161682129000042 + ], + [ + 105.143127441000047, + 13.164123535000044 + ], + [ + 105.145874023000033, + 13.16632080100004 + ], + [ + 105.148071289000086, + 13.168090820000032 + ], + [ + 105.150329590000069, + 13.170104980000076 + ], + [ + 105.152526855000076, + 13.171875 + ], + [ + 105.155883789000086, + 13.174926758000026 + ], + [ + 105.158691406000059, + 13.178283691000047 + ], + [ + 105.161499023000033, + 13.180725098000039 + ], + [ + 105.164489746000072, + 13.184692383000026 + ], + [ + 105.167724609000061, + 13.188903809000067 + ], + [ + 105.169921875000057, + 13.193298340000069 + ], + [ + 105.171691895000038, + 13.197082520000038 + ], + [ + 105.173095703000058, + 13.200500488000046 + ], + [ + 105.174682617000087, + 13.204711914000029 + ], + [ + 105.175903320000089, + 13.207702637000068 + ], + [ + 105.177917480000076, + 13.211730957000043 + ], + [ + 105.180297852000081, + 13.21569824200003 + ], + [ + 105.182312012000068, + 13.218688965000069 + ], + [ + 105.184509277000075, + 13.221496582000043 + ], + [ + 105.187927246000072, + 13.223693848000039 + ], + [ + 105.189086914000086, + 13.227111816000047 + ], + [ + 105.192077637000068, + 13.229919434000067 + ], + [ + 105.195312500000057, + 13.231872559000067 + ], + [ + 105.198120117000087, + 13.233703613000046 + ], + [ + 105.200683594000054, + 13.235473633000026 + ], + [ + 105.203674316000047, + 13.237670898000033 + ], + [ + 105.207092285000044, + 13.239929199000073 + ], + [ + 105.209716797000056, + 13.241516113000046 + ], + [ + 105.213684082000043, + 13.243713379000042 + ], + [ + 105.217529297000056, + 13.245727539000029 + ], + [ + 105.220886230000076, + 13.247680664000029 + ], + [ + 105.223876953000058, + 13.249511719000054 + ], + [ + 105.226928711000085, + 13.251525879000042 + ], + [ + 105.230102539000086, + 13.252929687000062 + ], + [ + 105.232482910000044, + 13.254699707000043 + ], + [ + 105.235900879000042, + 13.25671386700003 + ], + [ + 105.239929199000073, + 13.258483887000068 + ], + [ + 105.244079590000069, + 13.260314941000047 + ], + [ + 105.247924805000082, + 13.260681152000075 + ], + [ + 105.252075195000089, + 13.262084961000028 + ], + [ + 105.254882812000062, + 13.263305664000029 + ], + [ + 105.258911133000083, + 13.264709473000039 + ], + [ + 105.262512207000043, + 13.26593017600004 + ], + [ + 105.266723633000083, + 13.267517090000069 + ], + [ + 105.270080566000047, + 13.268920898000033 + ], + [ + 105.273315430000082, + 13.270507812000062 + ], + [ + 105.277526855000076, + 13.273498535000044 + ], + [ + 105.280517578000058, + 13.275878906000059 + ], + [ + 105.282714844000054, + 13.278076172000056 + ], + [ + 105.285095215000069, + 13.280883789000029 + ], + [ + 105.287109375000057, + 13.283325195000032 + ], + [ + 105.289306641000053, + 13.285888672000056 + ], + [ + 105.291687012000068, + 13.288696289000029 + ], + [ + 105.294128418000071, + 13.291503906000059 + ], + [ + 105.297119141000053, + 13.294921875000057 + ], + [ + 105.300292969000054, + 13.298095703000058 + ], + [ + 105.303527832000043, + 13.301330566000047 + ], + [ + 105.306884766000053, + 13.304321289000029 + ], + [ + 105.309509277000075, + 13.306884766000053 + ], + [ + 105.311889648000033, + 13.309326172000056 + ], + [ + 105.314514160000044, + 13.312316895000038 + ], + [ + 105.317321777000075, + 13.316101074000073 + ], + [ + 105.319885254000042, + 13.319519043000071 + ], + [ + 105.323303223000039, + 13.322875977000024 + ], + [ + 105.327087402000075, + 13.32647705100004 + ], + [ + 105.330688477000081, + 13.330078125000057 + ], + [ + 105.33428955100004, + 13.333679199000073 + ], + [ + 105.336486816000047, + 13.336486816000047 + ], + [ + 105.338317871000072, + 13.338684082000043 + ], + [ + 105.340698242000087, + 13.341125488000046 + ], + [ + 105.344299316000047, + 13.343872070000032 + ], + [ + 105.348083496000072, + 13.34851074200003 + ], + [ + 105.350097656000059, + 13.352294922000056 + ], + [ + 105.351318359000061, + 13.355102539000029 + ], + [ + 105.353088379000042, + 13.358520508000026 + ], + [ + 105.355895996000072, + 13.361328125000057 + ], + [ + 105.358520508000083, + 13.363281250000057 + ], + [ + 105.361694336000085, + 13.365295410000044 + ], + [ + 105.365295410000044, + 13.367126465000069 + ], + [ + 105.368286133000083, + 13.368713379000042 + ], + [ + 105.372680664000086, + 13.370910645000038 + ], + [ + 105.376708984000061, + 13.372924805000025 + ], + [ + 105.379882812000062, + 13.374694824000073 + ], + [ + 105.383911133000083, + 13.376281738000046 + ], + [ + 105.387878418000071, + 13.378295898000033 + ], + [ + 105.391906738000046, + 13.380493164000029 + ], + [ + 105.394897461000085, + 13.382324219000054 + ], + [ + 105.398925781000059, + 13.384277344000054 + ], + [ + 105.402893066000047, + 13.385498047000056 + ], + [ + 105.406311035000044, + 13.386474609000061 + ], + [ + 105.411071777000075, + 13.387512207000043 + ], + [ + 105.414672852000081, + 13.388671875000057 + ], + [ + 105.418090820000089, + 13.390502930000025 + ], + [ + 105.421691895000038, + 13.392089844000054 + ], + [ + 105.425109863000046, + 13.393127441000047 + ], + [ + 105.428894043000071, + 13.394104004000042 + ], + [ + 105.432495117000087, + 13.395324707000043 + ], + [ + 105.435913086000085, + 13.396484375000057 + ], + [ + 105.440124512000068, + 13.398315430000025 + ], + [ + 105.443908691000047, + 13.399902344000054 + ], + [ + 105.447692871000072, + 13.401489258000026 + ], + [ + 105.450927734000061, + 13.403076172000056 + ], + [ + 105.454101562000062, + 13.405090332000043 + ], + [ + 105.457702637000068, + 13.406921387000068 + ], + [ + 105.460510254000042, + 13.408691406000059 + ], + [ + 105.464294434000067, + 13.411071777000075 + ], + [ + 105.468872070000089, + 13.414123535000044 + ], + [ + 105.471130371000072, + 13.416076660000044 + ], + [ + 105.47491455100004, + 13.418518066000047 + ], + [ + 105.479675293000071, + 13.421325684000067 + ], + [ + 105.484130859000061, + 13.422912598000039 + ], + [ + 105.489685059000067, + 13.42468261700003 + ], + [ + 105.493896484000061, + 13.42608642600004 + ], + [ + 105.497924805000082, + 13.426879883000026 + ], + [ + 105.502075195000089, + 13.427917480000076 + ], + [ + 105.505920410000044, + 13.428710937000062 + ], + [ + 105.509094238000046, + 13.429504395000038 + ], + [ + 105.512878418000071, + 13.430725098000039 + ], + [ + 105.517272949000073, + 13.431884766000053 + ], + [ + 105.520324707000043, + 13.432678223000039 + ], + [ + 105.524291992000087, + 13.43389892600004 + ], + [ + 105.526916504000042, + 13.436096191000047 + ], + [ + 105.529296875000057, + 13.438720703000058 + ], + [ + 105.531494141000053, + 13.441894531000059 + ], + [ + 105.533691406000059, + 13.446105957000043 + ], + [ + 105.537475586000085, + 13.44812011700003 + ], + [ + 105.538513184000067, + 13.445312500000057 + ], + [ + 105.541687012000068, + 13.444519043000071 + ], + [ + 105.544311523000033, + 13.441284180000025 + ], + [ + 105.545898437000062, + 13.438476562000062 + ], + [ + 105.545898437000062, + 13.434875488000046 + ], + [ + 105.544921875000057, + 13.431274414000029 + ], + [ + 105.544494629000042, + 13.427917480000076 + ], + [ + 105.544677734000061, + 13.424926758000026 + ], + [ + 105.545715332000043, + 13.420104980000076 + ], + [ + 105.547302246000072, + 13.416076660000044 + ], + [ + 105.549316406000059, + 13.413879395000038 + ], + [ + 105.550903320000089, + 13.411499023000033 + ], + [ + 105.551513672000056, + 13.408081055000025 + ], + [ + 105.550903320000089, + 13.404296875000057 + ], + [ + 105.550476074000073, + 13.401306152000075 + ], + [ + 105.550903320000089, + 13.397705078000058 + ], + [ + 105.550476074000073, + 13.393920898000033 + ], + [ + 105.551330566000047, + 13.390502930000025 + ], + [ + 105.550720215000069, + 13.386474609000061 + ], + [ + 105.549926758000083, + 13.382690430000025 + ], + [ + 105.549499512000068, + 13.377929687000062 + ], + [ + 105.547912598000039, + 13.374084473000039 + ], + [ + 105.545898437000062, + 13.369506836000028 + ], + [ + 105.545898437000062, + 13.36608886700003 + ], + [ + 105.546875, + 13.363281250000057 + ], + [ + 105.548278809000067, + 13.358520508000026 + ], + [ + 105.549316406000059, + 13.354675293000071 + ], + [ + 105.549926758000083, + 13.351318359000061 + ], + [ + 105.550109863000046, + 13.346679687000062 + ], + [ + 105.547729492000087, + 13.341674805000025 + ], + [ + 105.547119141000053, + 13.337890625000057 + ], + [ + 105.548706055000082, + 13.334106445000032 + ], + [ + 105.549682617000087, + 13.330871582000043 + ], + [ + 105.550292969000054, + 13.326904297000056 + ], + [ + 105.549926758000083, + 13.321899414000029 + ], + [ + 105.548889160000044, + 13.317077637000068 + ], + [ + 105.549926758000083, + 13.313110352000024 + ], + [ + 105.550903320000089, + 13.30889892600004 + ], + [ + 105.550109863000046, + 13.304687500000057 + ], + [ + 105.549926758000083, + 13.300476074000073 + ], + [ + 105.550903320000089, + 13.295471191000047 + ], + [ + 105.549926758000083, + 13.29132080100004 + ], + [ + 105.549926758000083, + 13.287109375000057 + ], + [ + 105.548706055000082, + 13.284301758000026 + ], + [ + 105.549499512000068, + 13.281494141000053 + ], + [ + 105.549072266000053, + 13.278503418000071 + ], + [ + 105.551879883000083, + 13.276916504000042 + ], + [ + 105.560302734000061, + 13.273498535000044 + ], + [ + 105.564514160000044, + 13.271911621000072 + ], + [ + 105.568725586000085, + 13.269897461000028 + ], + [ + 105.575683594000054, + 13.262512207000043 + ], + [ + 105.578918457000043, + 13.259094238000046 + ], + [ + 105.581115723000039, + 13.256530762000068 + ], + [ + 105.586914062000062, + 13.250671387000068 + ], + [ + 105.587890625000057, + 13.247314453000058 + ], + [ + 105.588684082000043, + 13.244079590000069 + ], + [ + 105.589111328000058, + 13.240905762000068 + ], + [ + 105.589294434000067, + 13.236083984000061 + ], + [ + 105.589294434000067, + 13.230102539000029 + ], + [ + 105.588500977000081, + 13.227111816000047 + ], + [ + 105.587890625000057, + 13.224304199000073 + ], + [ + 105.587707520000038, + 13.220520020000038 + ], + [ + 105.587280273000033, + 13.216491699000073 + ], + [ + 105.587707520000038, + 13.212524414000029 + ], + [ + 105.589111328000058, + 13.207275391000053 + ], + [ + 105.590881348000039, + 13.203491211000028 + ], + [ + 105.592529297000056, + 13.200317383000026 + ], + [ + 105.594482422000056, + 13.195922852000024 + ], + [ + 105.596130371000072, + 13.19171142600004 + ], + [ + 105.597717285000044, + 13.187927246000072 + ], + [ + 105.598876953000058, + 13.183715820000032 + ], + [ + 105.600280762000068, + 13.178710937000062 + ], + [ + 105.601501465000069, + 13.172485352000024 + ], + [ + 105.601684570000089, + 13.167480469000054 + ], + [ + 105.601684570000089, + 13.163085937000062 + ], + [ + 105.602478027000075, + 13.159118652000075 + ], + [ + 105.603698730000076, + 13.155517578000058 + ], + [ + 105.604919434000067, + 13.152526855000076 + ], + [ + 105.608093262000068, + 13.151123047000056 + ], + [ + 105.610900879000042, + 13.149719238000046 + ], + [ + 105.612670898000033, + 13.146301270000038 + ], + [ + 105.613525391000053, + 13.142517090000069 + ], + [ + 105.617126465000069, + 13.139892578000058 + ], + [ + 105.620910645000038, + 13.137695312000062 + ], + [ + 105.623107910000044, + 13.135498047000056 + ], + [ + 105.626098633000083, + 13.133911133000026 + ], + [ + 105.629272461000085, + 13.13171386700003 + ], + [ + 105.63311767600004, + 13.130920410000044 + ], + [ + 105.636474609000061, + 13.128723145000038 + ], + [ + 105.638122559000067, + 13.125671387000068 + ], + [ + 105.638916016000053, + 13.122497559000067 + ], + [ + 105.639526367000087, + 13.119689941000047 + ], + [ + 105.641479492000087, + 13.11749267600004 + ], + [ + 105.644104004000042, + 13.115905762000068 + ], + [ + 105.647094727000081, + 13.113281250000057 + ], + [ + 105.647888184000067, + 13.108703613000046 + ], + [ + 105.647888184000067, + 13.105102539000029 + ], + [ + 105.646728516000053, + 13.100708008000026 + ], + [ + 105.646118164000086, + 13.096923828000058 + ], + [ + 105.644470215000069, + 13.092285156000059 + ], + [ + 105.642517090000069, + 13.088500977000024 + ], + [ + 105.64093017600004, + 13.08428955100004 + ], + [ + 105.640319824000073, + 13.079284668000071 + ], + [ + 105.638488770000038, + 13.076110840000069 + ], + [ + 105.637329102000081, + 13.072875977000024 + ], + [ + 105.636901855000076, + 13.069519043000071 + ], + [ + 105.636108398000033, + 13.06671142600004 + ], + [ + 105.633483887000068, + 13.063293457000043 + ], + [ + 105.631713867000087, + 13.058471680000025 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 3.4469075196699999, + "Shape_Area": 0.39027782713999998, + "ADM1_EN": "Kampot", + "ADM1_PCODE": "KH07", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 104.405090332000043, + 10.471923828000058 + ], + [ + 104.401916504000042, + 10.470886230000076 + ], + [ + 104.401916504000042, + 10.474487305000025 + ], + [ + 104.405090332000043, + 10.471923828000058 + ] + ] + ], + [ + [ + [ + 104.405090332000043, + 10.471923828000058 + ], + [ + 104.407104492000087, + 10.476074219000054 + ], + [ + 104.407897949000073, + 10.479492187000062 + ], + [ + 104.407287598000039, + 10.483093262000068 + ], + [ + 104.404113770000038, + 10.480712891000053 + ], + [ + 104.401306152000075, + 10.484924316000047 + ], + [ + 104.400878906000059, + 10.488525391000053 + ], + [ + 104.402709961000085, + 10.492919922000056 + ], + [ + 104.407897949000073, + 10.493713379000042 + ], + [ + 104.406127930000082, + 10.490478516000053 + ], + [ + 104.409301758000083, + 10.488891602000024 + ], + [ + 104.412109375000057, + 10.487487793000071 + ], + [ + 104.415893555000082, + 10.488708496000072 + ], + [ + 104.420104980000076, + 10.490112305000025 + ], + [ + 104.421508789000086, + 10.493530273000033 + ], + [ + 104.418518066000047, + 10.496276855000076 + ], + [ + 104.41632080100004, + 10.499084473000039 + ], + [ + 104.417907715000069, + 10.504089355000076 + ], + [ + 104.414672852000081, + 10.508483887000068 + ], + [ + 104.413879395000038, + 10.514282227000024 + ], + [ + 104.414672852000081, + 10.519714355000076 + ], + [ + 104.411499023000033, + 10.520874023000033 + ], + [ + 104.406921387000068, + 10.522888184000067 + ], + [ + 104.402709961000085, + 10.523925781000059 + ], + [ + 104.398681641000053, + 10.525878906000059 + ], + [ + 104.397521973000039, + 10.528930664000029 + ], + [ + 104.396728516000053, + 10.53210449200003 + ], + [ + 104.394287109000061, + 10.535522461000028 + ], + [ + 104.39093017600004, + 10.538085937000062 + ], + [ + 104.386291504000042, + 10.541687012000068 + ], + [ + 104.385314941000047, + 10.546081543000071 + ], + [ + 104.385498047000056, + 10.54968261700003 + ], + [ + 104.38507080100004, + 10.556884766000053 + ], + [ + 104.386108398000033, + 10.560729980000076 + ], + [ + 104.386108398000033, + 10.564086914000029 + ], + [ + 104.385498047000056, + 10.568115234000061 + ], + [ + 104.383911133000083, + 10.571289062000062 + ], + [ + 104.378295898000033, + 10.57507324200003 + ], + [ + 104.37530517600004, + 10.575500488000046 + ], + [ + 104.373291016000053, + 10.570495605000076 + ], + [ + 104.369323730000076, + 10.576293945000032 + ], + [ + 104.363098145000038, + 10.577514648000033 + ], + [ + 104.358520508000083, + 10.578125 + ], + [ + 104.354675293000071, + 10.577880859000061 + ], + [ + 104.351318359000061, + 10.578125 + ], + [ + 104.346923828000058, + 10.578308105000076 + ], + [ + 104.342895508000083, + 10.577880859000061 + ], + [ + 104.338684082000043, + 10.576110840000069 + ], + [ + 104.333312988000046, + 10.57452392600004 + ], + [ + 104.327514648000033, + 10.573730469000054 + ], + [ + 104.322326660000044, + 10.573730469000054 + ], + [ + 104.318298340000069, + 10.573486328000058 + ], + [ + 104.314697266000053, + 10.574096680000025 + ], + [ + 104.311096191000047, + 10.574890137000068 + ], + [ + 104.306701660000044, + 10.57507324200003 + ], + [ + 104.302917480000076, + 10.575683594000054 + ], + [ + 104.298278809000067, + 10.576904297000056 + ], + [ + 104.294311523000033, + 10.576721191000047 + ], + [ + 104.289916992000087, + 10.579895020000038 + ], + [ + 104.287475586000085, + 10.582092285000044 + ], + [ + 104.284301758000083, + 10.584716797000056 + ], + [ + 104.280273437000062, + 10.588073730000076 + ], + [ + 104.276916504000042, + 10.590515137000068 + ], + [ + 104.275085449000073, + 10.587890625000057 + ], + [ + 104.274108887000068, + 10.584106445000032 + ], + [ + 104.272888184000067, + 10.579711914000029 + ], + [ + 104.272094727000081, + 10.576110840000069 + ], + [ + 104.271484375000057, + 10.572082520000038 + ], + [ + 104.271118164000086, + 10.567321777000075 + ], + [ + 104.270874023000033, + 10.563110352000024 + ], + [ + 104.269104004000042, + 10.560729980000076 + ], + [ + 104.266113281000059, + 10.558715820000032 + ], + [ + 104.266906738000046, + 10.554687500000057 + ], + [ + 104.266479492000087, + 10.551513672000056 + ], + [ + 104.263305664000086, + 10.551513672000056 + ], + [ + 104.260925293000071, + 10.553710937000062 + ], + [ + 104.257873535000044, + 10.555480957000043 + ], + [ + 104.254882812000062, + 10.557678223000039 + ], + [ + 104.253479004000042, + 10.560729980000076 + ], + [ + 104.251098633000083, + 10.56530761700003 + ], + [ + 104.247924805000082, + 10.569885254000042 + ], + [ + 104.243530273000033, + 10.570922852000024 + ], + [ + 104.240112305000082, + 10.568725586000028 + ], + [ + 104.235900879000042, + 10.567687988000046 + ], + [ + 104.231079102000081, + 10.567504883000026 + ], + [ + 104.226318359000061, + 10.566284180000025 + ], + [ + 104.226684570000032, + 10.562683105000076 + ], + [ + 104.224121094000054, + 10.563903809000067 + ], + [ + 104.222717285000044, + 10.561279297000056 + ], + [ + 104.220520020000038, + 10.563293457000043 + ], + [ + 104.218872070000032, + 10.566101074000073 + ], + [ + 104.222717285000044, + 10.567321777000075 + ], + [ + 104.218322754000042, + 10.569519043000071 + ], + [ + 104.213073730000076, + 10.570312500000057 + ], + [ + 104.214904785000044, + 10.565490723000039 + ], + [ + 104.216674805000082, + 10.559692383000026 + ], + [ + 104.213928223000039, + 10.557312012000068 + ], + [ + 104.210510254000042, + 10.558105469000054 + ], + [ + 104.207702637000068, + 10.559326172000056 + ], + [ + 104.204711914000086, + 10.560119629000042 + ], + [ + 104.201293945000032, + 10.559692383000026 + ], + [ + 104.198303223000039, + 10.557922363000046 + ], + [ + 104.195495605000076, + 10.556091309000067 + ], + [ + 104.192504883000083, + 10.553894043000071 + ], + [ + 104.189270020000038, + 10.550903320000032 + ], + [ + 104.186523437000062, + 10.548706055000025 + ], + [ + 104.183471680000082, + 10.546508789000029 + ], + [ + 104.182312012000068, + 10.542480469000054 + ], + [ + 104.179687500000057, + 10.53991699200003 + ], + [ + 104.177490234000061, + 10.543090820000032 + ], + [ + 104.172485352000081, + 10.544921875000057 + ], + [ + 104.169494629000042, + 10.548889160000044 + ], + [ + 104.164489746000072, + 10.553710937000062 + ], + [ + 104.160278320000032, + 10.554687500000057 + ], + [ + 104.156311035000044, + 10.556884766000053 + ], + [ + 104.153686523000033, + 10.560119629000042 + ], + [ + 104.15069580100004, + 10.559875488000046 + ], + [ + 104.147521973000039, + 10.562316895000038 + ], + [ + 104.143676758000083, + 10.563903809000067 + ], + [ + 104.140686035000044, + 10.564086914000029 + ], + [ + 104.137878418000071, + 10.563476562000062 + ], + [ + 104.134277344000054, + 10.563293457000043 + ], + [ + 104.131713867000087, + 10.561706543000071 + ], + [ + 104.128295898000033, + 10.559692383000026 + ], + [ + 104.12530517600004, + 10.558105469000054 + ], + [ + 104.122314453000058, + 10.558471680000025 + ], + [ + 104.118530273000033, + 10.556884766000053 + ], + [ + 104.115905762000068, + 10.555480957000043 + ], + [ + 104.113098145000038, + 10.553710937000062 + ], + [ + 104.109497070000032, + 10.550903320000032 + ], + [ + 104.106872559000067, + 10.548706055000025 + ], + [ + 104.103088379000042, + 10.547485352000024 + ], + [ + 104.098510742000087, + 10.547119141000053 + ], + [ + 104.094726562000062, + 10.547302246000072 + ], + [ + 104.090881348000039, + 10.54772949200003 + ], + [ + 104.086730957000043, + 10.549072266000053 + ], + [ + 104.081481934000067, + 10.549926758000026 + ], + [ + 104.077270508000083, + 10.548278809000067 + ], + [ + 104.073120117000087, + 10.547912598000039 + ], + [ + 104.068725586000085, + 10.547912598000039 + ], + [ + 104.064270020000038, + 10.548889160000044 + ], + [ + 104.059692383000083, + 10.549072266000053 + ], + [ + 104.056091309000067, + 10.548522949000073 + ], + [ + 104.053527832000043, + 10.54968261700003 + ], + [ + 104.050476074000073, + 10.549499512000068 + ], + [ + 104.047119141000053, + 10.550476074000073 + ], + [ + 104.043518066000047, + 10.553283691000047 + ], + [ + 104.039306641000053, + 10.554504395000038 + ], + [ + 104.035705566000047, + 10.555114746000072 + ], + [ + 104.031921387000068, + 10.557128906000059 + ], + [ + 104.027709961000085, + 10.559875488000046 + ], + [ + 104.023315430000082, + 10.561096191000047 + ], + [ + 104.018920898000033, + 10.561523437000062 + ], + [ + 104.015319824000073, + 10.562316895000038 + ], + [ + 104.013671875000057, + 10.564880371000072 + ], + [ + 104.011291504000042, + 10.567504883000026 + ], + [ + 104.009277344000054, + 10.570312500000057 + ], + [ + 104.005126953000058, + 10.569091797000056 + ], + [ + 103.999877930000082, + 10.570312500000057 + ], + [ + 103.995910645000038, + 10.571472168000071 + ], + [ + 103.993103027000075, + 10.572082520000038 + ], + [ + 103.990295410000044, + 10.574096680000025 + ], + [ + 103.986328125000057, + 10.57647705100004 + ], + [ + 103.98272705100004, + 10.577880859000061 + ], + [ + 103.979919434000067, + 10.579711914000029 + ], + [ + 103.976318359000061, + 10.582092285000044 + ], + [ + 103.971679687000062, + 10.582519531000059 + ], + [ + 103.968688965000069, + 10.583496094000054 + ], + [ + 103.965270996000072, + 10.584716797000056 + ], + [ + 103.961486816000047, + 10.586914062000062 + ], + [ + 103.957275391000053, + 10.587890625000057 + ], + [ + 103.952087402000075, + 10.588500977000024 + ], + [ + 103.947326660000044, + 10.588317871000072 + ], + [ + 103.944091797000056, + 10.587524414000029 + ], + [ + 103.940673828000058, + 10.587524414000029 + ], + [ + 103.936889648000033, + 10.589477539000029 + ], + [ + 103.933288574000073, + 10.592529297000056 + ], + [ + 103.930114746000072, + 10.595275879000042 + ], + [ + 103.927917480000076, + 10.598327637000068 + ], + [ + 103.924926758000083, + 10.601318359000061 + ], + [ + 103.921875, + 10.604492187000062 + ], + [ + 103.920288086000085, + 10.60827636700003 + ], + [ + 103.923706055000082, + 10.611694336000028 + ], + [ + 103.926879883000083, + 10.614501953000058 + ], + [ + 103.930480957000043, + 10.615478516000053 + ], + [ + 103.929870605000076, + 10.619079590000069 + ], + [ + 103.932678223000039, + 10.621704102000024 + ], + [ + 103.935729980000076, + 10.619079590000069 + ], + [ + 103.939270020000038, + 10.620300293000071 + ], + [ + 103.94171142600004, + 10.616699219000054 + ], + [ + 103.943481445000032, + 10.619506836000028 + ], + [ + 103.946472168000071, + 10.622497559000067 + ], + [ + 103.949707031000059, + 10.623107910000044 + ], + [ + 103.953125, + 10.625122070000032 + ], + [ + 103.953491211000085, + 10.630310059000067 + ], + [ + 103.955078125000057, + 10.634094238000046 + ], + [ + 103.956115723000039, + 10.639282227000024 + ], + [ + 103.957702637000068, + 10.643493652000075 + ], + [ + 103.959716797000056, + 10.646728516000053 + ], + [ + 103.961120605000076, + 10.651123047000056 + ], + [ + 103.963684082000043, + 10.655517578000058 + ], + [ + 103.965515137000068, + 10.659912109000061 + ], + [ + 103.965881348000039, + 10.663513184000067 + ], + [ + 103.966918945000032, + 10.667297363000046 + ], + [ + 103.967529297000056, + 10.671691895000038 + ], + [ + 103.966491699000073, + 10.676330566000047 + ], + [ + 103.964904785000044, + 10.679077148000033 + ], + [ + 103.964721680000082, + 10.682922363000046 + ], + [ + 103.963500977000081, + 10.685485840000069 + ], + [ + 103.963073730000076, + 10.690490723000039 + ], + [ + 103.962890625000057, + 10.695129395000038 + ], + [ + 103.962097168000071, + 10.698303223000039 + ], + [ + 103.960510254000042, + 10.701293945000032 + ], + [ + 103.958679199000073, + 10.704895020000038 + ], + [ + 103.957275391000053, + 10.707702637000068 + ], + [ + 103.954895020000038, + 10.709472656000059 + ], + [ + 103.950683594000054, + 10.710876465000069 + ], + [ + 103.946472168000071, + 10.712097168000071 + ], + [ + 103.944091797000056, + 10.715087891000053 + ], + [ + 103.941894531000059, + 10.718872070000032 + ], + [ + 103.939880371000072, + 10.721313477000024 + ], + [ + 103.937683105000076, + 10.724304199000073 + ], + [ + 103.935729980000076, + 10.728515625000057 + ], + [ + 103.933471680000082, + 10.732482910000044 + ], + [ + 103.931091309000067, + 10.736328125000057 + ], + [ + 103.928894043000071, + 10.739929199000073 + ], + [ + 103.926330566000047, + 10.744079590000069 + ], + [ + 103.924316406000059, + 10.748291016000053 + ], + [ + 103.923889160000044, + 10.751525879000042 + ], + [ + 103.924072266000053, + 10.754516602000024 + ], + [ + 103.924072266000053, + 10.757873535000044 + ], + [ + 103.923706055000082, + 10.761108398000033 + ], + [ + 103.922485352000081, + 10.764709473000039 + ], + [ + 103.922302246000072, + 10.769104004000042 + ], + [ + 103.933105469000054, + 10.777893066000047 + ], + [ + 103.934875488000046, + 10.78210449200003 + ], + [ + 103.935302734000061, + 10.785278320000032 + ], + [ + 103.935913086000085, + 10.788513184000067 + ], + [ + 103.934692383000083, + 10.791503906000059 + ], + [ + 103.933471680000082, + 10.794494629000042 + ], + [ + 103.933105469000054, + 10.798278809000067 + ], + [ + 103.933288574000073, + 10.801696777000075 + ], + [ + 103.934509277000075, + 10.804321289000029 + ], + [ + 103.936096191000047, + 10.806884766000053 + ], + [ + 103.937316895000038, + 10.809692383000026 + ], + [ + 103.939086914000086, + 10.8125 + ], + [ + 103.941894531000059, + 10.814514160000044 + ], + [ + 103.942871094000054, + 10.818298340000069 + ], + [ + 103.945495605000076, + 10.821716309000067 + ], + [ + 103.943481445000032, + 10.825927734000061 + ], + [ + 103.941284180000082, + 10.829284668000071 + ], + [ + 103.939270020000038, + 10.832702637000068 + ], + [ + 103.937683105000076, + 10.836303711000028 + ], + [ + 103.935302734000061, + 10.839294434000067 + ], + [ + 103.931701660000044, + 10.841674805000025 + ], + [ + 103.928894043000071, + 10.843505859000061 + ], + [ + 103.92608642600004, + 10.846130371000072 + ], + [ + 103.923889160000044, + 10.848876953000058 + ], + [ + 103.922912598000039, + 10.851684570000032 + ], + [ + 103.922485352000081, + 10.855529785000044 + ], + [ + 103.924072266000053, + 10.859130859000061 + ], + [ + 103.928283691000047, + 10.861328125000057 + ], + [ + 103.931701660000044, + 10.864074707000043 + ], + [ + 103.929504395000038, + 10.86749267600004 + ], + [ + 103.926879883000083, + 10.869506836000028 + ], + [ + 103.922912598000039, + 10.871520996000072 + ], + [ + 103.919311523000033, + 10.87390136700003 + ], + [ + 103.918884277000075, + 10.878479004000042 + ], + [ + 103.921081543000071, + 10.882324219000054 + ], + [ + 103.922302246000072, + 10.88507080100004 + ], + [ + 103.923095703000058, + 10.890319824000073 + ], + [ + 103.924316406000059, + 10.895690918000071 + ], + [ + 103.926879883000083, + 10.89929199200003 + ], + [ + 103.931518555000082, + 10.899475098000039 + ], + [ + 103.933288574000073, + 10.902893066000047 + ], + [ + 103.933471680000082, + 10.906677246000072 + ], + [ + 103.933105469000054, + 10.911499023000033 + ], + [ + 103.932128906000059, + 10.916076660000044 + ], + [ + 103.932678223000039, + 10.920715332000043 + ], + [ + 103.934509277000075, + 10.923889160000044 + ], + [ + 103.934326172000056, + 10.927673340000069 + ], + [ + 103.933471680000082, + 10.940490723000039 + ], + [ + 103.931091309000067, + 10.942871094000054 + ], + [ + 103.928527832000043, + 10.944274902000075 + ], + [ + 103.925720215000069, + 10.944885254000042 + ], + [ + 103.920715332000043, + 10.946716309000067 + ], + [ + 103.918090820000032, + 10.950927734000061 + ], + [ + 103.916076660000044, + 10.955078125000057 + ], + [ + 103.919311523000033, + 10.957702637000068 + ], + [ + 103.923522949000073, + 10.959472656000059 + ], + [ + 103.927124023000033, + 10.960876465000069 + ], + [ + 103.930114746000072, + 10.962097168000071 + ], + [ + 103.932678223000039, + 10.963684082000043 + ], + [ + 103.935119629000042, + 10.966308594000054 + ], + [ + 103.936706543000071, + 10.968688965000069 + ], + [ + 103.938293457000043, + 10.971130371000072 + ], + [ + 103.942687988000046, + 10.973693848000039 + ], + [ + 103.946289062000062, + 10.975891113000046 + ], + [ + 103.948486328000058, + 10.977722168000071 + ], + [ + 103.950683594000054, + 10.979675293000071 + ], + [ + 103.952880859000061, + 10.981506348000039 + ], + [ + 103.956298828000058, + 10.984130859000061 + ], + [ + 103.960327148000033, + 10.985900879000042 + ], + [ + 103.963073730000076, + 10.987670898000033 + ], + [ + 103.967529297000056, + 10.99108886700003 + ], + [ + 103.971923828000058, + 10.993286133000026 + ], + [ + 103.975097656000059, + 10.996093750000057 + ], + [ + 103.977905273000033, + 10.999511719000054 + ], + [ + 103.980712891000053, + 11.002502441000047 + ], + [ + 103.984130859000061, + 11.00671386700003 + ], + [ + 103.986511230000076, + 11.009094238000046 + ], + [ + 103.988525391000053, + 11.011474609000061 + ], + [ + 103.991271973000039, + 11.01452636700003 + ], + [ + 103.994079590000069, + 11.017700195000032 + ], + [ + 103.996704102000081, + 11.019897461000028 + ], + [ + 104.001281738000046, + 11.020507812000062 + ], + [ + 104.005676270000038, + 11.018920898000033 + ], + [ + 104.010498047000056, + 11.019470215000069 + ], + [ + 104.015075684000067, + 11.020690918000071 + ], + [ + 104.018127441000047, + 11.019714355000076 + ], + [ + 104.019470215000069, + 11.016296387000068 + ], + [ + 104.020324707000043, + 11.012512207000043 + ], + [ + 104.022094727000081, + 11.009521484000061 + ], + [ + 104.02569580100004, + 11.010314941000047 + ], + [ + 104.029113770000038, + 11.011108398000033 + ], + [ + 104.034118652000075, + 11.011474609000061 + ], + [ + 104.037292480000076, + 11.011718750000057 + ], + [ + 104.041687012000068, + 11.012512207000043 + ], + [ + 104.046081543000071, + 11.013488770000038 + ], + [ + 104.048889160000044, + 11.015075684000067 + ], + [ + 104.051513672000056, + 11.017089844000054 + ], + [ + 104.054077148000033, + 11.019287109000061 + ], + [ + 104.057495117000087, + 11.021911621000072 + ], + [ + 104.061706543000071, + 11.02429199200003 + ], + [ + 104.064514160000044, + 11.025512695000032 + ], + [ + 104.067871094000054, + 11.025329590000069 + ], + [ + 104.071899414000086, + 11.028686523000033 + ], + [ + 104.074279785000044, + 11.032470703000058 + ], + [ + 104.075073242000087, + 11.037109375000057 + ], + [ + 104.074890137000068, + 11.041687012000068 + ], + [ + 104.072082520000038, + 11.044677734000061 + ], + [ + 104.069885254000042, + 11.047119141000053 + ], + [ + 104.067687988000046, + 11.04968261700003 + ], + [ + 104.064880371000072, + 11.052673340000069 + ], + [ + 104.062072754000042, + 11.055480957000043 + ], + [ + 104.059875488000046, + 11.058105469000054 + ], + [ + 104.060729980000076, + 11.061889648000033 + ], + [ + 104.064880371000072, + 11.064086914000029 + ], + [ + 104.067504883000083, + 11.06530761700003 + ], + [ + 104.070678711000085, + 11.066101074000073 + ], + [ + 104.073730469000054, + 11.068115234000061 + ], + [ + 104.076110840000069, + 11.071716309000067 + ], + [ + 104.077270508000083, + 11.075683594000054 + ], + [ + 104.07647705100004, + 11.078674316000047 + ], + [ + 104.075317383000083, + 11.082275391000053 + ], + [ + 104.075073242000087, + 11.087707520000038 + ], + [ + 104.074279785000044, + 11.091674805000025 + ], + [ + 104.073303223000039, + 11.095275879000042 + ], + [ + 104.072509766000053, + 11.098083496000072 + ], + [ + 104.071289062000062, + 11.101684570000032 + ], + [ + 104.070129395000038, + 11.104919434000067 + ], + [ + 104.069519043000071, + 11.107910156000059 + ], + [ + 104.070129395000038, + 11.112304687000062 + ], + [ + 104.070312500000057, + 11.11608886700003 + ], + [ + 104.070678711000085, + 11.121520996000072 + ], + [ + 104.070312500000057, + 11.126708984000061 + ], + [ + 104.070495605000076, + 11.130493164000029 + ], + [ + 104.070922852000081, + 11.133728027000075 + ], + [ + 104.070922852000081, + 11.136901855000076 + ], + [ + 104.070922852000081, + 11.140075684000067 + ], + [ + 104.070922852000081, + 11.143676758000026 + ], + [ + 104.070922852000081, + 11.146911621000072 + ], + [ + 104.069519043000071, + 11.150085449000073 + ], + [ + 104.067687988000046, + 11.152709961000028 + ], + [ + 104.064086914000086, + 11.156921387000068 + ], + [ + 104.062072754000042, + 11.159729004000042 + ], + [ + 104.059082031000059, + 11.163330078000058 + ], + [ + 104.055725098000039, + 11.167724609000061 + ], + [ + 104.052124023000033, + 11.171081543000071 + ], + [ + 104.056701660000044, + 11.171081543000071 + ], + [ + 104.060729980000076, + 11.171325684000067 + ], + [ + 104.065124512000068, + 11.171875 + ], + [ + 104.070312500000057, + 11.172302246000072 + ], + [ + 104.074707031000059, + 11.172302246000072 + ], + [ + 104.079284668000071, + 11.171691895000038 + ], + [ + 104.083496094000054, + 11.170898437000062 + ], + [ + 104.087890625000057, + 11.169921875000057 + ], + [ + 104.093078613000046, + 11.168701172000056 + ], + [ + 104.099670410000044, + 11.167114258000026 + ], + [ + 104.105285645000038, + 11.165527344000054 + ], + [ + 104.110290527000075, + 11.163879395000038 + ], + [ + 104.116699219000054, + 11.162109375000057 + ], + [ + 104.122314453000058, + 11.160705566000047 + ], + [ + 104.127685547000056, + 11.159301758000026 + ], + [ + 104.133300781000059, + 11.157470703000058 + ], + [ + 104.139099121000072, + 11.155273437000062 + ], + [ + 104.143920898000033, + 11.153686523000033 + ], + [ + 104.147888184000067, + 11.152709961000028 + ], + [ + 104.152893066000047, + 11.150878906000059 + ], + [ + 104.157104492000087, + 11.14929199200003 + ], + [ + 104.161071777000075, + 11.146911621000072 + ], + [ + 104.163513184000067, + 11.143493652000075 + ], + [ + 104.165100098000039, + 11.140319824000073 + ], + [ + 104.166076660000044, + 11.137329102000024 + ], + [ + 104.16827392600004, + 11.13311767600004 + ], + [ + 104.170471191000047, + 11.127929687000062 + ], + [ + 104.172485352000081, + 11.124694824000073 + ], + [ + 104.174499512000068, + 11.122070312000062 + ], + [ + 104.176879883000083, + 11.119506836000028 + ], + [ + 104.181274414000086, + 11.113891602000024 + ], + [ + 104.18389892600004, + 11.110900879000042 + ], + [ + 104.186096191000047, + 11.10827636700003 + ], + [ + 104.188720703000058, + 11.106079102000024 + ], + [ + 104.192077637000068, + 11.103515625000057 + ], + [ + 104.196472168000071, + 11.100891113000046 + ], + [ + 104.199707031000059, + 11.098693848000039 + ], + [ + 104.204101562000062, + 11.097717285000044 + ], + [ + 104.208312988000046, + 11.096130371000072 + ], + [ + 104.211486816000047, + 11.094909668000071 + ], + [ + 104.215881348000039, + 11.094116211000028 + ], + [ + 104.221313477000081, + 11.093688965000069 + ], + [ + 104.225524902000075, + 11.093688965000069 + ], + [ + 104.231323242000087, + 11.093505859000061 + ], + [ + 104.235107422000056, + 11.093505859000061 + ], + [ + 104.238708496000072, + 11.093505859000061 + ], + [ + 104.242919922000056, + 11.093322754000042 + ], + [ + 104.246276855000076, + 11.092895508000026 + ], + [ + 104.253112793000071, + 11.094726562000062 + ], + [ + 104.261108398000033, + 11.096679687000062 + ], + [ + 104.265686035000044, + 11.097717285000044 + ], + [ + 104.269287109000061, + 11.097473145000038 + ], + [ + 104.273681641000053, + 11.099304199000073 + ], + [ + 104.278503418000071, + 11.101928711000028 + ], + [ + 104.284484863000046, + 11.102905273000033 + ], + [ + 104.289306641000053, + 11.103088379000042 + ], + [ + 104.293090820000032, + 11.104492187000062 + ], + [ + 104.297485352000081, + 11.104919434000067 + ], + [ + 104.30108642600004, + 11.103881836000028 + ], + [ + 104.304504395000038, + 11.103515625000057 + ], + [ + 104.308288574000073, + 11.103698730000076 + ], + [ + 104.312927246000072, + 11.106506348000039 + ], + [ + 104.314514160000044, + 11.110290527000075 + ], + [ + 104.316101074000073, + 11.113708496000072 + ], + [ + 104.318298340000069, + 11.116271973000039 + ], + [ + 104.321105957000043, + 11.115722656000059 + ], + [ + 104.32452392600004, + 11.11749267600004 + ], + [ + 104.326904297000056, + 11.121093750000057 + ], + [ + 104.329101562000062, + 11.124511719000054 + ], + [ + 104.329284668000071, + 11.127929687000062 + ], + [ + 104.331726074000073, + 11.132080078000058 + ], + [ + 104.334899902000075, + 11.13507080100004 + ], + [ + 104.338317871000072, + 11.137695312000062 + ], + [ + 104.342712402000075, + 11.139709473000039 + ], + [ + 104.346923828000058, + 11.139099121000072 + ], + [ + 104.350280762000068, + 11.137695312000062 + ], + [ + 104.354492187000062, + 11.137695312000062 + ], + [ + 104.358520508000083, + 11.136291504000042 + ], + [ + 104.362304687000062, + 11.135925293000071 + ], + [ + 104.365722656000059, + 11.13507080100004 + ], + [ + 104.367919922000056, + 11.132873535000044 + ], + [ + 104.370117187000062, + 11.13507080100004 + ], + [ + 104.374328613000046, + 11.135498047000056 + ], + [ + 104.379699707000043, + 11.136291504000042 + ], + [ + 104.384521484000061, + 11.137084961000028 + ], + [ + 104.388488770000038, + 11.137878418000071 + ], + [ + 104.390075684000067, + 11.141113281000059 + ], + [ + 104.393493652000075, + 11.143127441000047 + ], + [ + 104.396911621000072, + 11.147705078000058 + ], + [ + 104.400085449000073, + 11.145690918000071 + ], + [ + 104.402709961000085, + 11.14288330100004 + ], + [ + 104.405273437000062, + 11.141113281000059 + ], + [ + 104.407470703000058, + 11.137878418000071 + ], + [ + 104.410522461000085, + 11.136901855000076 + ], + [ + 104.410278320000032, + 11.111083984000061 + ], + [ + 104.411071777000075, + 11.077880859000061 + ], + [ + 104.413513184000067, + 11.079711914000029 + ], + [ + 104.417480469000054, + 11.081481934000067 + ], + [ + 104.421691895000038, + 11.082275391000053 + ], + [ + 104.425109863000046, + 11.082275391000053 + ], + [ + 104.428894043000071, + 11.081726074000073 + ], + [ + 104.433471680000082, + 11.080322266000053 + ], + [ + 104.437927246000072, + 11.075927734000061 + ], + [ + 104.441284180000082, + 11.073913574000073 + ], + [ + 104.444091797000056, + 11.07312011700003 + ], + [ + 104.447509766000053, + 11.072509766000053 + ], + [ + 104.451293945000032, + 11.071289062000062 + ], + [ + 104.455078125000057, + 11.068908691000047 + ], + [ + 104.455078125000057, + 11.057922363000046 + ], + [ + 104.461120605000076, + 11.063720703000058 + ], + [ + 104.468505859000061, + 11.056884766000053 + ], + [ + 104.487670898000033, + 11.070922852000024 + ], + [ + 104.486877441000047, + 11.059692383000026 + ], + [ + 104.496276855000076, + 11.059326172000056 + ], + [ + 104.499511719000054, + 11.058288574000073 + ], + [ + 104.504272461000085, + 11.05108642600004 + ], + [ + 104.507324219000054, + 11.045715332000043 + ], + [ + 104.510925293000071, + 11.042724609000061 + ], + [ + 104.513671875000057, + 11.038513184000067 + ], + [ + 104.51593017600004, + 11.034912109000061 + ], + [ + 104.518676758000083, + 11.030700684000067 + ], + [ + 104.521484375000057, + 11.026672363000046 + ], + [ + 104.523315430000082, + 11.023681641000053 + ], + [ + 104.524108887000068, + 11.019470215000069 + ], + [ + 104.52569580100004, + 11.016723633000026 + ], + [ + 104.527893066000047, + 11.013305664000029 + ], + [ + 104.529296875000057, + 11.01007080100004 + ], + [ + 104.530090332000043, + 11.007324219000054 + ], + [ + 104.532470703000058, + 11.003295898000033 + ], + [ + 104.534118652000075, + 10.998291016000053 + ], + [ + 104.534484863000046, + 10.993286133000026 + ], + [ + 104.536071777000075, + 10.990295410000044 + ], + [ + 104.537902832000043, + 10.987121582000043 + ], + [ + 104.538879395000038, + 10.981079102000024 + ], + [ + 104.539672852000081, + 10.975280762000068 + ], + [ + 104.539672852000081, + 10.969726562000062 + ], + [ + 104.54132080100004, + 10.966125488000046 + ], + [ + 104.540710449000073, + 10.958496094000054 + ], + [ + 104.539672852000081, + 10.952087402000075 + ], + [ + 104.539672852000081, + 10.947509766000053 + ], + [ + 104.540893555000082, + 10.936523437000062 + ], + [ + 104.541076660000044, + 10.930297852000024 + ], + [ + 104.527282715000069, + 10.905273437000062 + ], + [ + 104.521484375000057, + 10.893920898000033 + ], + [ + 104.535888672000056, + 10.887084961000028 + ], + [ + 104.546508789000086, + 10.886291504000042 + ], + [ + 104.549926758000083, + 10.886474609000061 + ], + [ + 104.554077148000033, + 10.887084961000028 + ], + [ + 104.559326172000056, + 10.887878418000071 + ], + [ + 104.562316895000038, + 10.887512207000043 + ], + [ + 104.57452392600004, + 10.886901855000076 + ], + [ + 104.580322266000053, + 10.886291504000042 + ], + [ + 104.585327148000033, + 10.886291504000042 + ], + [ + 104.597900391000053, + 10.892089844000054 + ], + [ + 104.618286133000083, + 10.902282715000069 + ], + [ + 104.624511719000054, + 10.901489258000026 + ], + [ + 104.630920410000044, + 10.904479980000076 + ], + [ + 104.634704590000069, + 10.905090332000043 + ], + [ + 104.641906738000046, + 10.906311035000044 + ], + [ + 104.645507812000062, + 10.906494141000053 + ], + [ + 104.650878906000059, + 10.90710449200003 + ], + [ + 104.654724121000072, + 10.90710449200003 + ], + [ + 104.658691406000059, + 10.906127930000025 + ], + [ + 104.66827392600004, + 10.901123047000056 + ], + [ + 104.674316406000059, + 10.899902344000054 + ], + [ + 104.674316406000059, + 10.894104004000042 + ], + [ + 104.677917480000076, + 10.893676758000026 + ], + [ + 104.686889648000033, + 10.880310059000067 + ], + [ + 104.689514160000044, + 10.874511719000054 + ], + [ + 104.691894531000059, + 10.872924805000025 + ], + [ + 104.697082520000038, + 10.861511230000076 + ], + [ + 104.698303223000039, + 10.858703613000046 + ], + [ + 104.699279785000044, + 10.854309082000043 + ], + [ + 104.700927734000061, + 10.851318359000061 + ], + [ + 104.702087402000075, + 10.848693848000039 + ], + [ + 104.703308105000076, + 10.845275879000042 + ], + [ + 104.705505371000072, + 10.839477539000029 + ], + [ + 104.706726074000073, + 10.835083008000026 + ], + [ + 104.704528809000067, + 10.832092285000044 + ], + [ + 104.704528809000067, + 10.828308105000076 + ], + [ + 104.705078125000057, + 10.824096680000025 + ], + [ + 104.705322266000053, + 10.820312500000057 + ], + [ + 104.705322266000053, + 10.816528320000032 + ], + [ + 104.705078125000057, + 10.813293457000043 + ], + [ + 104.706726074000073, + 10.809509277000075 + ], + [ + 104.706115723000039, + 10.806518555000025 + ], + [ + 104.708312988000046, + 10.804504395000038 + ], + [ + 104.710510254000042, + 10.801879883000026 + ], + [ + 104.712097168000071, + 10.799072266000053 + ], + [ + 104.715087891000053, + 10.796508789000029 + ], + [ + 104.716674805000082, + 10.79327392600004 + ], + [ + 104.719299316000047, + 10.791503906000059 + ], + [ + 104.722290039000086, + 10.788330078000058 + ], + [ + 104.723083496000072, + 10.784301758000026 + ], + [ + 104.725280762000068, + 10.78210449200003 + ], + [ + 104.729125977000081, + 10.780273437000062 + ], + [ + 104.724304199000073, + 10.777282715000069 + ], + [ + 104.718872070000089, + 10.775085449000073 + ], + [ + 104.714294434000067, + 10.772705078000058 + ], + [ + 104.711120605000076, + 10.770507812000062 + ], + [ + 104.707519531000059, + 10.767517090000069 + ], + [ + 104.703918457000043, + 10.764709473000039 + ], + [ + 104.702697754000042, + 10.762084961000028 + ], + [ + 104.702697754000042, + 10.758911133000026 + ], + [ + 104.701293945000089, + 10.755310059000067 + ], + [ + 104.699890137000068, + 10.750488281000059 + ], + [ + 104.699707031000059, + 10.747070312000062 + ], + [ + 104.700073242000087, + 10.744079590000069 + ], + [ + 104.702087402000075, + 10.74108886700003 + ], + [ + 104.69952392600004, + 10.738708496000072 + ], + [ + 104.698303223000039, + 10.734497070000032 + ], + [ + 104.695922852000081, + 10.731079102000024 + ], + [ + 104.694091797000056, + 10.728271484000061 + ], + [ + 104.691101074000073, + 10.724670410000044 + ], + [ + 104.687683105000076, + 10.721313477000024 + ], + [ + 104.686889648000033, + 10.718322754000042 + ], + [ + 104.684509277000075, + 10.715087891000053 + ], + [ + 104.683105469000054, + 10.710510254000042 + ], + [ + 104.680480957000043, + 10.706298828000058 + ], + [ + 104.676513672000056, + 10.703674316000047 + ], + [ + 104.673278809000067, + 10.700500488000046 + ], + [ + 104.671081543000071, + 10.695495605000076 + ], + [ + 104.672119141000053, + 10.691101074000073 + ], + [ + 104.673889160000044, + 10.688903809000067 + ], + [ + 104.674499512000068, + 10.684692383000026 + ], + [ + 104.673889160000044, + 10.680908203000058 + ], + [ + 104.674499512000068, + 10.678100586000028 + ], + [ + 104.674316406000059, + 10.67468261700003 + ], + [ + 104.673889160000044, + 10.670898437000062 + ], + [ + 104.674316406000059, + 10.667297363000046 + ], + [ + 104.674682617000087, + 10.663696289000029 + ], + [ + 104.675109863000046, + 10.659729004000042 + ], + [ + 104.674316406000059, + 10.655517578000058 + ], + [ + 104.673706055000082, + 10.651916504000042 + ], + [ + 104.674926758000083, + 10.648498535000044 + ], + [ + 104.675476074000073, + 10.645690918000071 + ], + [ + 104.676330566000047, + 10.641296387000068 + ], + [ + 104.676879883000083, + 10.636108398000033 + ], + [ + 104.676513672000056, + 10.63311767600004 + ], + [ + 104.675476074000073, + 10.629699707000043 + ], + [ + 104.674926758000083, + 10.625122070000032 + ], + [ + 104.673889160000044, + 10.621276855000076 + ], + [ + 104.677307129000042, + 10.621276855000076 + ], + [ + 104.681274414000086, + 10.621093750000057 + ], + [ + 104.685729980000076, + 10.620910645000038 + ], + [ + 104.689270020000038, + 10.620727539000029 + ], + [ + 104.692321777000075, + 10.620483398000033 + ], + [ + 104.695678711000085, + 10.620300293000071 + ], + [ + 104.699890137000068, + 10.619873047000056 + ], + [ + 104.704895020000038, + 10.619689941000047 + ], + [ + 104.707702637000068, + 10.619079590000069 + ], + [ + 104.710510254000042, + 10.61608886700003 + ], + [ + 104.711486816000047, + 10.612304687000062 + ], + [ + 104.713500977000081, + 10.609497070000032 + ], + [ + 104.711303711000085, + 10.604675293000071 + ], + [ + 104.709472656000059, + 10.600891113000046 + ], + [ + 104.707275391000053, + 10.596496582000043 + ], + [ + 104.706726074000073, + 10.592529297000056 + ], + [ + 104.706481934000067, + 10.589111328000058 + ], + [ + 104.707275391000053, + 10.584899902000075 + ], + [ + 104.711486816000047, + 10.580688477000024 + ], + [ + 104.712890625000057, + 10.575317383000026 + ], + [ + 104.712524414000086, + 10.570129395000038 + ], + [ + 104.711914062000062, + 10.566528320000032 + ], + [ + 104.711730957000043, + 10.563110352000024 + ], + [ + 104.711486816000047, + 10.55889892600004 + ], + [ + 104.712097168000071, + 10.555480957000043 + ], + [ + 104.712097168000071, + 10.550903320000032 + ], + [ + 104.713317871000072, + 10.545715332000043 + ], + [ + 104.714111328000058, + 10.541503906000059 + ], + [ + 104.716491699000073, + 10.539489746000072 + ], + [ + 104.718505859000061, + 10.537292480000076 + ], + [ + 104.717895508000083, + 10.534301758000026 + ], + [ + 104.714477539000086, + 10.53210449200003 + ], + [ + 104.710327148000033, + 10.531921387000068 + ], + [ + 104.705078125000057, + 10.533691406000059 + ], + [ + 104.699707031000059, + 10.535522461000028 + ], + [ + 104.694885254000042, + 10.536926270000038 + ], + [ + 104.69171142600004, + 10.537109375000057 + ], + [ + 104.688476562000062, + 10.537719727000024 + ], + [ + 104.684509277000075, + 10.537475586000028 + ], + [ + 104.680725098000039, + 10.537719727000024 + ], + [ + 104.676696777000075, + 10.538085937000062 + ], + [ + 104.673706055000082, + 10.538085937000062 + ], + [ + 104.669921875000057, + 10.538513184000067 + ], + [ + 104.665893555000082, + 10.538696289000029 + ], + [ + 104.662719727000081, + 10.538879395000038 + ], + [ + 104.658691406000059, + 10.539123535000044 + ], + [ + 104.653686523000033, + 10.539489746000072 + ], + [ + 104.650085449000073, + 10.539672852000024 + ], + [ + 104.647094727000081, + 10.539123535000044 + ], + [ + 104.646484375000057, + 10.536315918000071 + ], + [ + 104.646484375000057, + 10.533081055000025 + ], + [ + 104.644897461000085, + 10.529479980000076 + ], + [ + 104.640502930000082, + 10.529479980000076 + ], + [ + 104.637084961000085, + 10.529296875000057 + ], + [ + 104.634277344000054, + 10.528503418000071 + ], + [ + 104.630493164000086, + 10.528320312000062 + ], + [ + 104.626892090000069, + 10.528076172000056 + ], + [ + 104.623901367000087, + 10.527893066000047 + ], + [ + 104.620910645000038, + 10.527709961000028 + ], + [ + 104.617919922000056, + 10.527526855000076 + ], + [ + 104.614074707000043, + 10.528503418000071 + ], + [ + 104.609130859000061, + 10.531311035000044 + ], + [ + 104.603881836000085, + 10.533081055000025 + ], + [ + 104.599487305000082, + 10.534301758000026 + ], + [ + 104.596496582000043, + 10.53210449200003 + ], + [ + 104.593322754000042, + 10.530883789000029 + ], + [ + 104.590087891000053, + 10.530090332000043 + ], + [ + 104.587707520000038, + 10.527893066000047 + ], + [ + 104.587097168000071, + 10.523071289000029 + ], + [ + 104.586730957000043, + 10.519287109000061 + ], + [ + 104.586914062000062, + 10.51593017600004 + ], + [ + 104.586914062000062, + 10.512695312000062 + ], + [ + 104.585876465000069, + 10.509704590000069 + ], + [ + 104.58428955100004, + 10.506530762000068 + ], + [ + 104.582092285000044, + 10.503906250000057 + ], + [ + 104.578491211000085, + 10.501892090000069 + ], + [ + 104.573303223000039, + 10.50030517600004 + ], + [ + 104.569274902000075, + 10.498474121000072 + ], + [ + 104.565490723000039, + 10.495910645000038 + ], + [ + 104.562072754000042, + 10.494689941000047 + ], + [ + 104.559509277000075, + 10.49249267600004 + ], + [ + 104.55889892600004, + 10.488281250000057 + ], + [ + 104.558715820000032, + 10.482910156000059 + ], + [ + 104.558288574000073, + 10.479919434000067 + ], + [ + 104.558105469000054, + 10.476928711000028 + ], + [ + 104.557922363000046, + 10.473876953000058 + ], + [ + 104.556518555000082, + 10.469482422000056 + ], + [ + 104.555480957000043, + 10.465515137000068 + ], + [ + 104.554504395000038, + 10.462097168000071 + ], + [ + 104.553100586000085, + 10.45928955100004 + ], + [ + 104.55108642600004, + 10.456115723000039 + ], + [ + 104.548522949000073, + 10.453308105000076 + ], + [ + 104.544921875000057, + 10.45007324200003 + ], + [ + 104.541687012000068, + 10.44812011700003 + ], + [ + 104.537902832000043, + 10.447875977000024 + ], + [ + 104.532897949000073, + 10.447692871000072 + ], + [ + 104.528930664000086, + 10.447082520000038 + ], + [ + 104.526123047000056, + 10.446105957000043 + ], + [ + 104.522521973000039, + 10.443725586000028 + ], + [ + 104.519287109000061, + 10.441528320000032 + ], + [ + 104.516906738000046, + 10.438903809000067 + ], + [ + 104.515319824000073, + 10.435729980000076 + ], + [ + 104.513122559000067, + 10.431701660000044 + ], + [ + 104.511291504000042, + 10.428283691000047 + ], + [ + 104.509704590000069, + 10.42468261700003 + ], + [ + 104.508300781000059, + 10.421508789000029 + ], + [ + 104.506530762000068, + 10.417724609000061 + ], + [ + 104.504516602000081, + 10.413879395000038 + ], + [ + 104.502929687000062, + 10.411315918000071 + ], + [ + 104.500915527000075, + 10.407714844000054 + ], + [ + 104.497924805000082, + 10.405090332000043 + ], + [ + 104.492309570000032, + 10.411926270000038 + ], + [ + 104.489074707000043, + 10.418884277000075 + ], + [ + 104.487304687000062, + 10.421875 + ], + [ + 104.484497070000032, + 10.425903320000032 + ], + [ + 104.478881836000085, + 10.431884766000053 + ], + [ + 104.47491455100004, + 10.431518555000025 + ], + [ + 104.457885742000087, + 10.427124023000033 + ], + [ + 104.442321777000075, + 10.423278809000067 + ], + [ + 104.438110352000081, + 10.424072266000053 + ], + [ + 104.435119629000042, + 10.427673340000069 + ], + [ + 104.430908203000058, + 10.431884766000053 + ], + [ + 104.428283691000047, + 10.435119629000042 + ], + [ + 104.428283691000047, + 10.439270020000038 + ], + [ + 104.426513672000056, + 10.443725586000028 + ], + [ + 104.423278809000067, + 10.443725586000028 + ], + [ + 104.419921875000057, + 10.443908691000047 + ], + [ + 104.416870117000087, + 10.443481445000032 + ], + [ + 104.415100098000039, + 10.446105957000043 + ], + [ + 104.424316406000059, + 10.453918457000043 + ], + [ + 104.42608642600004, + 10.458129883000026 + ], + [ + 104.423095703000058, + 10.45928955100004 + ], + [ + 104.421691895000038, + 10.461914062000062 + ], + [ + 104.419494629000042, + 10.464904785000044 + ], + [ + 104.415893555000082, + 10.466308594000054 + ], + [ + 104.418090820000032, + 10.468688965000069 + ], + [ + 104.419311523000033, + 10.471496582000043 + ], + [ + 104.414489746000072, + 10.473876953000058 + ], + [ + 104.412292480000076, + 10.470520020000038 + ], + [ + 104.408325195000032, + 10.469726562000062 + ], + [ + 104.405517578000058, + 10.467712402000075 + ], + [ + 104.405090332000043, + 10.471923828000058 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 5.11370153821, + "Shape_Area": 0.26967735585800001, + "ADM1_EN": "Kandal", + "ADM1_PCODE": "KH08", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 104.825073242000087, + 11.882873535000044 + ], + [ + 104.827697754000042, + 11.880676270000038 + ], + [ + 104.829895020000038, + 11.877929687000062 + ], + [ + 104.831909180000082, + 11.874084473000039 + ], + [ + 104.834472656000059, + 11.871887207000043 + ], + [ + 104.836914062000062, + 11.868530273000033 + ], + [ + 104.836486816000047, + 11.865478516000053 + ], + [ + 104.835876465000069, + 11.862121582000043 + ], + [ + 104.835083008000083, + 11.858093262000068 + ], + [ + 104.833923340000069, + 11.853088379000042 + ], + [ + 104.833496094000054, + 11.84991455100004 + ], + [ + 104.831909180000082, + 11.846130371000072 + ], + [ + 104.831481934000067, + 11.843078613000046 + ], + [ + 104.831481934000067, + 11.840087891000053 + ], + [ + 104.833496094000054, + 11.837280273000033 + ], + [ + 104.832519531000059, + 11.833496094000054 + ], + [ + 104.832519531000059, + 11.829711914000029 + ], + [ + 104.830871582000043, + 11.826721191000047 + ], + [ + 104.83428955100004, + 11.824279785000044 + ], + [ + 104.839904785000044, + 11.823730469000054 + ], + [ + 104.846313477000081, + 11.824707031000059 + ], + [ + 104.851928711000085, + 11.826904297000056 + ], + [ + 104.852111816000047, + 11.830505371000072 + ], + [ + 104.853698730000076, + 11.833129883000026 + ], + [ + 104.858276367000087, + 11.831481934000067 + ], + [ + 104.861694336000085, + 11.828125 + ], + [ + 104.866271973000039, + 11.827514648000033 + ], + [ + 104.869323730000076, + 11.823303223000039 + ], + [ + 104.873718262000068, + 11.820678711000028 + ], + [ + 104.877929687000062, + 11.818908691000047 + ], + [ + 104.881896973000039, + 11.820129395000038 + ], + [ + 104.884094238000046, + 11.823730469000054 + ], + [ + 104.887512207000043, + 11.822509766000053 + ], + [ + 104.890686035000044, + 11.822326660000044 + ], + [ + 104.893310547000056, + 11.819885254000042 + ], + [ + 104.895874023000033, + 11.818115234000061 + ], + [ + 104.899475098000039, + 11.815917969000054 + ], + [ + 104.901672363000046, + 11.812927246000072 + ], + [ + 104.903503418000071, + 11.809082031000059 + ], + [ + 104.907287598000039, + 11.807922363000046 + ], + [ + 104.910888672000056, + 11.807922363000046 + ], + [ + 104.914672852000081, + 11.808715820000032 + ], + [ + 104.918090820000089, + 11.809326172000056 + ], + [ + 104.920288086000085, + 11.811279297000056 + ], + [ + 104.920898437000062, + 11.815490723000039 + ], + [ + 104.921691895000038, + 11.818725586000028 + ], + [ + 104.924682617000087, + 11.821289062000062 + ], + [ + 104.927917480000076, + 11.823486328000058 + ], + [ + 104.930480957000043, + 11.826904297000056 + ], + [ + 104.932312012000068, + 11.831115723000039 + ], + [ + 104.935729980000076, + 11.832702637000068 + ], + [ + 104.939514160000044, + 11.83428955100004 + ], + [ + 104.940917969000054, + 11.837707520000038 + ], + [ + 104.941894531000059, + 11.841918945000032 + ], + [ + 104.944274902000075, + 11.845092773000033 + ], + [ + 104.945495605000076, + 11.848083496000072 + ], + [ + 104.944885254000042, + 11.852294922000056 + ], + [ + 104.946716309000067, + 11.855895996000072 + ], + [ + 104.949096680000082, + 11.859924316000047 + ], + [ + 104.952087402000075, + 11.862487793000071 + ], + [ + 104.953918457000043, + 11.864929199000073 + ], + [ + 104.953674316000047, + 11.870117187000062 + ], + [ + 104.955688477000081, + 11.874694824000073 + ], + [ + 104.957519531000059, + 11.871520996000072 + ], + [ + 104.957885742000087, + 11.868286133000026 + ], + [ + 104.958679199000073, + 11.864685059000067 + ], + [ + 104.959716797000056, + 11.861877441000047 + ], + [ + 104.964111328000058, + 11.856872559000067 + ], + [ + 104.96710205100004, + 11.85968017600004 + ], + [ + 104.971923828000058, + 11.861877441000047 + ], + [ + 104.975708008000083, + 11.865478516000053 + ], + [ + 104.978088379000042, + 11.868530273000033 + ], + [ + 104.980712891000053, + 11.871887207000043 + ], + [ + 104.983093262000068, + 11.874877930000025 + ], + [ + 104.985290527000075, + 11.877929687000062 + ], + [ + 104.987121582000043, + 11.881896973000039 + ], + [ + 104.990722656000059, + 11.879882812000062 + ], + [ + 104.993713379000042, + 11.877502441000047 + ], + [ + 104.996093750000057, + 11.874084473000039 + ], + [ + 104.998291016000053, + 11.870727539000029 + ], + [ + 104.998901367000087, + 11.867126465000069 + ], + [ + 105.00030517600004, + 11.864074707000043 + ], + [ + 105.001892090000069, + 11.861694336000028 + ], + [ + 105.004089355000076, + 11.858886719000054 + ], + [ + 105.005493164000086, + 11.854492187000062 + ], + [ + 105.009277344000054, + 11.853515625000057 + ], + [ + 105.013916016000053, + 11.852722168000071 + ], + [ + 105.018493652000075, + 11.852294922000056 + ], + [ + 105.022521973000039, + 11.852294922000056 + ], + [ + 105.029113770000038, + 11.851684570000032 + ], + [ + 105.032897949000073, + 11.850891113000046 + ], + [ + 105.038330078000058, + 11.850280762000068 + ], + [ + 105.039672852000081, + 11.847473145000038 + ], + [ + 105.041076660000044, + 11.844116211000028 + ], + [ + 105.042907715000069, + 11.841125488000046 + ], + [ + 105.045715332000043, + 11.836486816000047 + ], + [ + 105.048522949000073, + 11.832519531000059 + ], + [ + 105.052673340000069, + 11.828308105000076 + ], + [ + 105.054870605000076, + 11.82647705100004 + ], + [ + 105.057312012000068, + 11.824279785000044 + ], + [ + 105.059692383000083, + 11.821472168000071 + ], + [ + 105.063476562000062, + 11.818725586000028 + ], + [ + 105.065490723000039, + 11.815917969000054 + ], + [ + 105.066894531000059, + 11.812316895000038 + ], + [ + 105.067077637000068, + 11.808715820000032 + ], + [ + 105.062683105000076, + 11.805908203000058 + ], + [ + 105.059509277000075, + 11.802307129000042 + ], + [ + 105.055908203000058, + 11.802917480000076 + ], + [ + 105.052917480000076, + 11.80108642600004 + ], + [ + 105.052124023000033, + 11.797119141000053 + ], + [ + 105.050720215000069, + 11.793090820000032 + ], + [ + 105.050476074000073, + 11.789123535000044 + ], + [ + 105.049316406000059, + 11.784729004000042 + ], + [ + 105.048522949000073, + 11.779113770000038 + ], + [ + 105.047119141000053, + 11.776123047000056 + ], + [ + 105.047729492000087, + 11.772094727000024 + ], + [ + 105.048889160000044, + 11.767517090000069 + ], + [ + 105.048522949000073, + 11.762878418000071 + ], + [ + 105.048706055000082, + 11.759277344000054 + ], + [ + 105.048889160000044, + 11.755676270000038 + ], + [ + 105.048095703000058, + 11.752075195000032 + ], + [ + 105.052490234000061, + 11.751281738000046 + ], + [ + 105.057495117000087, + 11.751098633000026 + ], + [ + 105.061279297000056, + 11.751098633000026 + ], + [ + 105.066528320000089, + 11.751098633000026 + ], + [ + 105.071105957000043, + 11.751098633000026 + ], + [ + 105.07452392600004, + 11.751098633000026 + ], + [ + 105.078308105000076, + 11.751098633000026 + ], + [ + 105.083496094000054, + 11.750915527000075 + ], + [ + 105.088073730000076, + 11.750122070000032 + ], + [ + 105.091125488000046, + 11.746276855000076 + ], + [ + 105.093078613000046, + 11.742309570000032 + ], + [ + 105.094482422000056, + 11.739685059000067 + ], + [ + 105.096679687000062, + 11.736694336000028 + ], + [ + 105.101318359000061, + 11.73468017600004 + ], + [ + 105.106079102000081, + 11.73468017600004 + ], + [ + 105.108703613000046, + 11.736083984000061 + ], + [ + 105.111877441000047, + 11.738891602000024 + ], + [ + 105.114929199000073, + 11.740478516000053 + ], + [ + 105.117675781000059, + 11.741516113000046 + ], + [ + 105.121093750000057, + 11.741882324000073 + ], + [ + 105.126525879000042, + 11.741271973000039 + ], + [ + 105.130920410000044, + 11.739685059000067 + ], + [ + 105.134887695000089, + 11.738098145000038 + ], + [ + 105.138671875000057, + 11.736511230000076 + ], + [ + 105.143127441000047, + 11.734924316000047 + ], + [ + 105.147094727000081, + 11.734497070000032 + ], + [ + 105.151916504000042, + 11.734497070000032 + ], + [ + 105.155883789000086, + 11.734924316000047 + ], + [ + 105.159301758000083, + 11.735473633000026 + ], + [ + 105.159729004000042, + 11.73132324200003 + ], + [ + 105.155883789000086, + 11.728271484000061 + ], + [ + 105.155090332000043, + 11.724121094000054 + ], + [ + 105.156494141000053, + 11.720886230000076 + ], + [ + 105.157897949000073, + 11.717285156000059 + ], + [ + 105.158081055000082, + 11.713073730000076 + ], + [ + 105.156921387000068, + 11.708679199000073 + ], + [ + 105.154724121000072, + 11.706726074000073 + ], + [ + 105.151306152000075, + 11.707092285000044 + ], + [ + 105.148315430000082, + 11.705688477000024 + ], + [ + 105.148071289000086, + 11.701110840000069 + ], + [ + 105.145324707000043, + 11.699096680000025 + ], + [ + 105.141296387000068, + 11.698913574000073 + ], + [ + 105.137084961000085, + 11.700927734000061 + ], + [ + 105.133911133000083, + 11.699279785000044 + ], + [ + 105.131530762000068, + 11.695922852000024 + ], + [ + 105.128723145000038, + 11.693115234000061 + ], + [ + 105.128295898000033, + 11.689086914000029 + ], + [ + 105.128906250000057, + 11.685119629000042 + ], + [ + 105.129089355000076, + 11.680114746000072 + ], + [ + 105.128112793000071, + 11.67608642600004 + ], + [ + 105.124877930000082, + 11.673706055000025 + ], + [ + 105.121887207000043, + 11.671691895000038 + ], + [ + 105.121093750000057, + 11.667297363000046 + ], + [ + 105.122497559000067, + 11.664672852000024 + ], + [ + 105.124511719000054, + 11.662475586000028 + ], + [ + 105.127502441000047, + 11.661315918000071 + ], + [ + 105.130126953000058, + 11.659729004000042 + ], + [ + 105.131530762000068, + 11.656921387000068 + ], + [ + 105.132324219000054, + 11.653076172000056 + ], + [ + 105.130493164000086, + 11.649902344000054 + ], + [ + 105.126281738000046, + 11.648315430000025 + ], + [ + 105.121704102000081, + 11.646484375000057 + ], + [ + 105.118713379000042, + 11.644470215000069 + ], + [ + 105.115112305000082, + 11.642700195000032 + ], + [ + 105.111694336000085, + 11.641113281000059 + ], + [ + 105.111877441000047, + 11.637329102000024 + ], + [ + 105.113525391000053, + 11.633911133000026 + ], + [ + 105.109497070000089, + 11.63171386700003 + ], + [ + 105.106689453000058, + 11.629516602000024 + ], + [ + 105.103515625000057, + 11.624877930000025 + ], + [ + 105.104309082000043, + 11.620117187000062 + ], + [ + 105.107299805000082, + 11.61749267600004 + ], + [ + 105.10968017600004, + 11.615112305000025 + ], + [ + 105.111877441000047, + 11.612670898000033 + ], + [ + 105.110290527000075, + 11.609313965000069 + ], + [ + 105.111328125000057, + 11.605712891000053 + ], + [ + 105.111877441000047, + 11.600097656000059 + ], + [ + 105.112304687000062, + 11.594909668000071 + ], + [ + 105.113281250000057, + 11.591125488000046 + ], + [ + 105.114685059000067, + 11.588317871000072 + ], + [ + 105.116699219000054, + 11.58428955100004 + ], + [ + 105.115295410000044, + 11.579895020000038 + ], + [ + 105.11749267600004, + 11.576904297000056 + ], + [ + 105.115295410000044, + 11.574890137000068 + ], + [ + 105.113098145000038, + 11.571899414000029 + ], + [ + 105.115112305000082, + 11.567687988000046 + ], + [ + 105.116699219000054, + 11.564270020000038 + ], + [ + 105.117126465000069, + 11.561096191000047 + ], + [ + 105.120300293000071, + 11.558715820000032 + ], + [ + 105.121520996000072, + 11.555480957000043 + ], + [ + 105.124511719000054, + 11.552490234000061 + ], + [ + 105.128906250000057, + 11.553283691000047 + ], + [ + 105.131896973000039, + 11.551879883000026 + ], + [ + 105.133911133000083, + 11.549499512000068 + ], + [ + 105.129882812000062, + 11.546691895000038 + ], + [ + 105.130126953000058, + 11.543701172000056 + ], + [ + 105.128906250000057, + 11.540710449000073 + ], + [ + 105.128112793000071, + 11.536682129000042 + ], + [ + 105.131103516000053, + 11.534118652000075 + ], + [ + 105.134704590000069, + 11.532897949000073 + ], + [ + 105.138122559000067, + 11.530090332000043 + ], + [ + 105.143127441000047, + 11.527893066000047 + ], + [ + 105.146728516000053, + 11.527282715000069 + ], + [ + 105.149719238000046, + 11.529479980000076 + ], + [ + 105.152526855000076, + 11.531127930000025 + ], + [ + 105.156127930000082, + 11.531921387000068 + ], + [ + 105.159912109000061, + 11.531311035000044 + ], + [ + 105.163513184000067, + 11.529907227000024 + ], + [ + 105.166687012000068, + 11.528503418000071 + ], + [ + 105.170715332000043, + 11.525085449000073 + ], + [ + 105.173522949000073, + 11.521911621000072 + ], + [ + 105.176879883000083, + 11.519287109000061 + ], + [ + 105.180725098000039, + 11.518310547000056 + ], + [ + 105.184692383000083, + 11.517700195000032 + ], + [ + 105.188720703000058, + 11.519470215000069 + ], + [ + 105.192871094000054, + 11.519714355000076 + ], + [ + 105.198303223000039, + 11.521118164000029 + ], + [ + 105.201721191000047, + 11.516113281000059 + ], + [ + 105.203491211000085, + 11.511901855000076 + ], + [ + 105.205322266000053, + 11.508911133000026 + ], + [ + 105.208496094000054, + 11.507080078000058 + ], + [ + 105.211486816000047, + 11.503112793000071 + ], + [ + 105.210693359000061, + 11.498718262000068 + ], + [ + 105.211914062000062, + 11.494689941000047 + ], + [ + 105.213500977000081, + 11.490905762000068 + ], + [ + 105.213684082000043, + 11.487670898000033 + ], + [ + 105.216918945000089, + 11.489501953000058 + ], + [ + 105.221130371000072, + 11.489685059000067 + ], + [ + 105.225097656000059, + 11.487915039000029 + ], + [ + 105.227722168000071, + 11.485290527000075 + ], + [ + 105.227294922000056, + 11.480712891000053 + ], + [ + 105.227905273000033, + 11.477478027000075 + ], + [ + 105.226928711000085, + 11.474670410000044 + ], + [ + 105.228881836000085, + 11.472290039000029 + ], + [ + 105.23272705100004, + 11.470092773000033 + ], + [ + 105.235290527000075, + 11.466918945000032 + ], + [ + 105.236694336000085, + 11.463500977000024 + ], + [ + 105.240295410000044, + 11.463317871000072 + ], + [ + 105.243896484000061, + 11.461486816000047 + ], + [ + 105.245483398000033, + 11.457275391000053 + ], + [ + 105.249511719000054, + 11.456298828000058 + ], + [ + 105.251892090000069, + 11.453674316000047 + ], + [ + 105.256103516000053, + 11.452697754000042 + ], + [ + 105.259094238000046, + 11.455688477000024 + ], + [ + 105.262329102000081, + 11.458129883000026 + ], + [ + 105.263916016000053, + 11.455322266000053 + ], + [ + 105.266723633000083, + 11.452514648000033 + ], + [ + 105.269897461000085, + 11.45007324200003 + ], + [ + 105.272277832000043, + 11.453125 + ], + [ + 105.274475098000039, + 11.455871582000043 + ], + [ + 105.277709961000085, + 11.45788574200003 + ], + [ + 105.281127930000082, + 11.455871582000043 + ], + [ + 105.284484863000046, + 11.452880859000061 + ], + [ + 105.286682129000042, + 11.449096680000025 + ], + [ + 105.284484863000046, + 11.446472168000071 + ], + [ + 105.282714844000054, + 11.443115234000061 + ], + [ + 105.284118652000075, + 11.440490723000039 + ], + [ + 105.286315918000071, + 11.437683105000076 + ], + [ + 105.290283203000058, + 11.435913086000028 + ], + [ + 105.29132080100004, + 11.432128906000059 + ], + [ + 105.292724609000061, + 11.428527832000043 + ], + [ + 105.296508789000086, + 11.425292969000054 + ], + [ + 105.295104980000076, + 11.42272949200003 + ], + [ + 105.292724609000061, + 11.419677734000061 + ], + [ + 105.289306641000053, + 11.415100098000039 + ], + [ + 105.285705566000047, + 11.411071777000075 + ], + [ + 105.283325195000089, + 11.408691406000059 + ], + [ + 105.280883789000086, + 11.406677246000072 + ], + [ + 105.277526855000076, + 11.404113770000038 + ], + [ + 105.274291992000087, + 11.401672363000046 + ], + [ + 105.271484375000057, + 11.399475098000039 + ], + [ + 105.268310547000056, + 11.397277832000043 + ], + [ + 105.264892578000058, + 11.395324707000043 + ], + [ + 105.260925293000071, + 11.393493652000075 + ], + [ + 105.255676270000038, + 11.39147949200003 + ], + [ + 105.256896973000039, + 11.38507080100004 + ], + [ + 105.257324219000054, + 11.380676270000038 + ], + [ + 105.257873535000044, + 11.37530517600004 + ], + [ + 105.258728027000075, + 11.370117187000062 + ], + [ + 105.259277344000054, + 11.364929199000073 + ], + [ + 105.259521484000061, + 11.361877441000047 + ], + [ + 105.26007080100004, + 11.35772705100004 + ], + [ + 105.259704590000069, + 11.354492187000062 + ], + [ + 105.262878418000071, + 11.350891113000046 + ], + [ + 105.264099121000072, + 11.347900391000053 + ], + [ + 105.265502930000082, + 11.343872070000032 + ], + [ + 105.267272949000073, + 11.340270996000072 + ], + [ + 105.268920898000033, + 11.337524414000029 + ], + [ + 105.270507812000062, + 11.334472656000059 + ], + [ + 105.271728516000053, + 11.330871582000043 + ], + [ + 105.272521973000039, + 11.328125 + ], + [ + 105.273315430000082, + 11.324890137000068 + ], + [ + 105.274108887000068, + 11.321289062000062 + ], + [ + 105.274475098000039, + 11.318298340000069 + ], + [ + 105.275085449000073, + 11.315490723000039 + ], + [ + 105.275085449000073, + 11.311096191000047 + ], + [ + 105.27569580100004, + 11.305908203000058 + ], + [ + 105.276123047000056, + 11.300292969000054 + ], + [ + 105.276489258000083, + 11.295898437000062 + ], + [ + 105.276916504000042, + 11.292480469000054 + ], + [ + 105.277526855000076, + 11.289123535000044 + ], + [ + 105.278076172000056, + 11.285888672000056 + ], + [ + 105.278930664000086, + 11.28210449200003 + ], + [ + 105.279296875000057, + 11.278686523000033 + ], + [ + 105.279479980000076, + 11.27429199200003 + ], + [ + 105.280883789000086, + 11.268493652000075 + ], + [ + 105.280273437000062, + 11.261291504000042 + ], + [ + 105.280883789000086, + 11.257324219000054 + ], + [ + 105.281127930000082, + 11.253723145000038 + ], + [ + 105.279907227000081, + 11.248107910000044 + ], + [ + 105.278320312000062, + 11.243713379000042 + ], + [ + 105.276489258000083, + 11.239501953000058 + ], + [ + 105.275512695000089, + 11.236328125000057 + ], + [ + 105.273681641000053, + 11.231506348000039 + ], + [ + 105.272521973000039, + 11.227294922000056 + ], + [ + 105.270690918000071, + 11.223083496000072 + ], + [ + 105.269470215000069, + 11.220092773000033 + ], + [ + 105.26788330100004, + 11.216308594000054 + ], + [ + 105.265686035000044, + 11.211486816000047 + ], + [ + 105.264099121000072, + 11.207519531000059 + ], + [ + 105.262695312000062, + 11.203918457000043 + ], + [ + 105.261108398000033, + 11.201293945000032 + ], + [ + 105.258728027000075, + 11.199096680000025 + ], + [ + 105.255493164000086, + 11.197082520000038 + ], + [ + 105.251892090000069, + 11.194519043000071 + ], + [ + 105.248718262000068, + 11.19171142600004 + ], + [ + 105.246093750000057, + 11.187927246000072 + ], + [ + 105.245300293000071, + 11.183105469000054 + ], + [ + 105.245117187000062, + 11.178710937000062 + ], + [ + 105.245300293000071, + 11.173889160000044 + ], + [ + 105.245727539000086, + 11.169677734000061 + ], + [ + 105.246093750000057, + 11.16632080100004 + ], + [ + 105.245483398000033, + 11.162475586000028 + ], + [ + 105.244506836000085, + 11.158081055000025 + ], + [ + 105.242675781000059, + 11.152709961000028 + ], + [ + 105.241699219000054, + 11.14929199200003 + ], + [ + 105.240112305000082, + 11.144897461000028 + ], + [ + 105.238708496000072, + 11.140502930000025 + ], + [ + 105.236877441000047, + 11.135925293000071 + ], + [ + 105.235290527000075, + 11.132507324000073 + ], + [ + 105.233886719000054, + 11.129699707000043 + ], + [ + 105.232116699000073, + 11.127075195000032 + ], + [ + 105.230285645000038, + 11.124694824000073 + ], + [ + 105.227722168000071, + 11.120910645000038 + ], + [ + 105.225708008000083, + 11.118530273000033 + ], + [ + 105.223693848000039, + 11.11608886700003 + ], + [ + 105.220275879000042, + 11.112915039000029 + ], + [ + 105.217712402000075, + 11.110473633000026 + ], + [ + 105.215270996000072, + 11.108703613000046 + ], + [ + 105.212097168000071, + 11.105895996000072 + ], + [ + 105.209106445000089, + 11.102905273000033 + ], + [ + 105.205871582000043, + 11.100891113000046 + ], + [ + 105.202697754000042, + 11.097473145000038 + ], + [ + 105.198486328000058, + 11.093322754000042 + ], + [ + 105.195678711000085, + 11.089477539000029 + ], + [ + 105.194274902000075, + 11.086486816000047 + ], + [ + 105.194274902000075, + 11.082092285000044 + ], + [ + 105.194274902000075, + 11.078491211000028 + ], + [ + 105.194519043000071, + 11.075317383000026 + ], + [ + 105.194885254000042, + 11.070922852000024 + ], + [ + 105.195495605000076, + 11.065673828000058 + ], + [ + 105.195922852000081, + 11.062072754000042 + ], + [ + 105.196289062000062, + 11.058471680000025 + ], + [ + 105.196289062000062, + 11.053894043000071 + ], + [ + 105.196716309000067, + 11.048706055000025 + ], + [ + 105.196716309000067, + 11.044311523000033 + ], + [ + 105.196716309000067, + 11.040100098000039 + ], + [ + 105.196899414000086, + 11.036315918000071 + ], + [ + 105.196899414000086, + 11.032287598000039 + ], + [ + 105.196899414000086, + 11.027099609000061 + ], + [ + 105.196105957000043, + 11.021911621000072 + ], + [ + 105.194885254000042, + 11.017272949000073 + ], + [ + 105.194274902000075, + 11.013488770000038 + ], + [ + 105.193908691000047, + 11.010498047000056 + ], + [ + 105.192871094000054, + 11.005676270000038 + ], + [ + 105.191284180000082, + 11.001525879000042 + ], + [ + 105.190917969000054, + 10.998107910000044 + ], + [ + 105.190490723000039, + 10.994506836000028 + ], + [ + 105.190307617000087, + 10.990112305000025 + ], + [ + 105.189880371000072, + 10.986083984000061 + ], + [ + 105.189514160000044, + 10.982116699000073 + ], + [ + 105.1875, + 10.979125977000024 + ], + [ + 105.186889648000033, + 10.976074219000054 + ], + [ + 105.185485840000069, + 10.971679687000062 + ], + [ + 105.184509277000075, + 10.968078613000046 + ], + [ + 105.184326172000056, + 10.964477539000029 + ], + [ + 105.184082031000059, + 10.961486816000047 + ], + [ + 105.18389892600004, + 10.956726074000073 + ], + [ + 105.18389892600004, + 10.951904297000056 + ], + [ + 105.184509277000075, + 10.947692871000072 + ], + [ + 105.185119629000042, + 10.943725586000028 + ], + [ + 105.185729980000076, + 10.94030761700003 + ], + [ + 105.186279297000056, + 10.936889648000033 + ], + [ + 105.186706543000071, + 10.933288574000073 + ], + [ + 105.187072754000042, + 10.930114746000072 + ], + [ + 105.187683105000076, + 10.926696777000075 + ], + [ + 105.188293457000043, + 10.923522949000073 + ], + [ + 105.188720703000058, + 10.918518066000047 + ], + [ + 105.189514160000044, + 10.913513184000067 + ], + [ + 105.182678223000039, + 10.912109375000057 + ], + [ + 105.179077148000033, + 10.913085937000062 + ], + [ + 105.176513672000056, + 10.914489746000072 + ], + [ + 105.172119141000053, + 10.916076660000044 + ], + [ + 105.16827392600004, + 10.917724609000061 + ], + [ + 105.165100098000039, + 10.919311523000033 + ], + [ + 105.161071777000075, + 10.921325684000067 + ], + [ + 105.156311035000044, + 10.923095703000058 + ], + [ + 105.151672363000046, + 10.923706055000025 + ], + [ + 105.147094727000081, + 10.923522949000073 + ], + [ + 105.142700195000089, + 10.923278809000067 + ], + [ + 105.137695312000062, + 10.92272949200003 + ], + [ + 105.131103516000053, + 10.922302246000072 + ], + [ + 105.126525879000042, + 10.921081543000071 + ], + [ + 105.122497559000067, + 10.920715332000043 + ], + [ + 105.118896484000061, + 10.920715332000043 + ], + [ + 105.114074707000043, + 10.920104980000076 + ], + [ + 105.110900879000042, + 10.919677734000061 + ], + [ + 105.106323242000087, + 10.919494629000042 + ], + [ + 105.102905273000033, + 10.921508789000029 + ], + [ + 105.102294922000056, + 10.924926758000026 + ], + [ + 105.103881836000085, + 10.927673340000069 + ], + [ + 105.105712891000053, + 10.930114746000072 + ], + [ + 105.109130859000061, + 10.93389892600004 + ], + [ + 105.112670898000033, + 10.938110352000024 + ], + [ + 105.114929199000073, + 10.941101074000073 + ], + [ + 105.116699219000054, + 10.944274902000075 + ], + [ + 105.117919922000056, + 10.948730469000054 + ], + [ + 105.11749267600004, + 10.953125 + ], + [ + 105.117126465000069, + 10.957275391000053 + ], + [ + 105.116088867000087, + 10.961120605000076 + ], + [ + 105.112487793000071, + 10.962097168000071 + ], + [ + 105.108093262000068, + 10.961486816000047 + ], + [ + 105.102478027000075, + 10.95928955100004 + ], + [ + 105.099121094000054, + 10.95788574200003 + ], + [ + 105.094482422000056, + 10.956726074000073 + ], + [ + 105.088317871000072, + 10.956481934000067 + ], + [ + 105.083129883000083, + 10.958496094000054 + ], + [ + 105.081115723000039, + 10.954895020000038 + ], + [ + 105.079895020000038, + 10.949096680000025 + ], + [ + 105.079284668000071, + 10.944885254000042 + ], + [ + 105.078918457000043, + 10.940124512000068 + ], + [ + 105.078918457000043, + 10.936706543000071 + ], + [ + 105.075927734000061, + 10.937683105000076 + ], + [ + 105.072326660000044, + 10.939270020000038 + ], + [ + 105.067077637000068, + 10.938903809000067 + ], + [ + 105.063293457000043, + 10.936889648000033 + ], + [ + 105.060119629000042, + 10.934875488000046 + ], + [ + 105.057312012000068, + 10.933105469000054 + ], + [ + 105.053283691000047, + 10.929870605000076 + ], + [ + 105.051513672000056, + 10.925903320000032 + ], + [ + 105.053100586000085, + 10.922302246000072 + ], + [ + 105.053100586000085, + 10.919128418000071 + ], + [ + 105.051879883000083, + 10.91632080100004 + ], + [ + 105.047729492000087, + 10.915527344000054 + ], + [ + 105.043884277000075, + 10.913513184000067 + ], + [ + 105.042480469000054, + 10.909484863000046 + ], + [ + 105.044311523000033, + 10.906127930000025 + ], + [ + 105.044921875000057, + 10.902526855000076 + ], + [ + 105.040893555000082, + 10.898925781000059 + ], + [ + 105.036315918000071, + 10.897705078000058 + ], + [ + 105.034729004000042, + 10.901672363000046 + ], + [ + 105.032897949000073, + 10.905700684000067 + ], + [ + 105.03350830100004, + 10.910705566000047 + ], + [ + 105.035522461000085, + 10.914306641000053 + ], + [ + 105.037475586000085, + 10.91827392600004 + ], + [ + 105.039489746000072, + 10.921691895000038 + ], + [ + 105.04132080100004, + 10.92468261700003 + ], + [ + 105.042480469000054, + 10.928100586000028 + ], + [ + 105.040893555000082, + 10.932128906000059 + ], + [ + 105.039123535000044, + 10.935485840000069 + ], + [ + 105.038696289000086, + 10.940490723000039 + ], + [ + 105.038085937000062, + 10.944519043000071 + ], + [ + 105.037475586000085, + 10.947875977000024 + ], + [ + 105.035888672000056, + 10.951110840000069 + ], + [ + 105.034118652000075, + 10.954284668000071 + ], + [ + 105.032897949000073, + 10.956909180000025 + ], + [ + 105.031494141000053, + 10.960510254000042 + ], + [ + 105.031311035000044, + 10.964721680000025 + ], + [ + 105.031677246000072, + 10.967712402000075 + ], + [ + 105.032104492000087, + 10.972106934000067 + ], + [ + 105.032104492000087, + 10.976318359000061 + ], + [ + 105.031677246000072, + 10.980895996000072 + ], + [ + 105.031494141000053, + 10.98468017600004 + ], + [ + 105.031127930000082, + 10.988708496000072 + ], + [ + 105.028686523000033, + 10.991699219000054 + ], + [ + 105.023315430000082, + 10.992126465000069 + ], + [ + 105.018676758000083, + 10.992675781000059 + ], + [ + 105.015075684000067, + 10.993530273000033 + ], + [ + 105.011718750000057, + 10.994506836000028 + ], + [ + 105.008728027000075, + 10.995117187000062 + ], + [ + 105.004089355000076, + 10.995910645000038 + ], + [ + 104.998901367000087, + 10.998107910000044 + ], + [ + 104.993713379000042, + 10.998291016000053 + ], + [ + 104.99249267600004, + 11.001708984000061 + ], + [ + 104.991271973000039, + 11.004699707000043 + ], + [ + 104.990905762000068, + 11.007690430000025 + ], + [ + 104.99249267600004, + 11.011291504000042 + ], + [ + 104.993713379000042, + 11.014709473000039 + ], + [ + 104.994506836000085, + 11.018310547000056 + ], + [ + 104.995910645000038, + 11.022521973000039 + ], + [ + 104.997314453000058, + 11.026123047000056 + ], + [ + 104.997924805000082, + 11.029296875000057 + ], + [ + 104.995727539000086, + 11.032287598000039 + ], + [ + 104.993103027000075, + 11.035522461000028 + ], + [ + 104.992919922000056, + 11.038513184000067 + ], + [ + 104.994689941000047, + 11.042114258000026 + ], + [ + 104.996704102000081, + 11.045715332000043 + ], + [ + 104.998718262000068, + 11.049316406000059 + ], + [ + 104.998107910000044, + 11.052307129000042 + ], + [ + 104.996276855000076, + 11.055908203000058 + ], + [ + 105.00030517600004, + 11.057312012000068 + ], + [ + 105.002319336000085, + 11.060302734000061 + ], + [ + 105.002685547000056, + 11.063293457000043 + ], + [ + 105.003112793000071, + 11.06671142600004 + ], + [ + 105.004699707000043, + 11.069702148000033 + ], + [ + 105.006286621000072, + 11.073486328000058 + ], + [ + 105.006713867000087, + 11.077697754000042 + ], + [ + 105.008483887000068, + 11.081726074000073 + ], + [ + 105.010681152000075, + 11.085327148000033 + ], + [ + 105.010681152000075, + 11.090087891000053 + ], + [ + 105.012512207000043, + 11.095703125000057 + ], + [ + 105.016723633000083, + 11.098327637000068 + ], + [ + 105.01788330100004, + 11.101684570000032 + ], + [ + 105.019104004000042, + 11.104919434000067 + ], + [ + 105.017089844000054, + 11.10772705100004 + ], + [ + 105.017517090000069, + 11.111694336000028 + ], + [ + 105.018493652000075, + 11.11608886700003 + ], + [ + 105.016906738000046, + 11.120727539000029 + ], + [ + 105.016113281000059, + 11.124328613000046 + ], + [ + 105.019104004000042, + 11.126708984000061 + ], + [ + 105.018493652000075, + 11.132080078000058 + ], + [ + 105.016723633000083, + 11.135314941000047 + ], + [ + 105.018676758000083, + 11.139892578000058 + ], + [ + 105.018920898000033, + 11.144714355000076 + ], + [ + 105.020324707000043, + 11.148681641000053 + ], + [ + 105.019897461000085, + 11.152709961000028 + ], + [ + 105.020080566000047, + 11.155883789000029 + ], + [ + 105.022888184000067, + 11.157897949000073 + ], + [ + 105.02569580100004, + 11.158874512000068 + ], + [ + 105.026306152000075, + 11.161926270000038 + ], + [ + 105.021484375000057, + 11.163513184000067 + ], + [ + 105.017272949000073, + 11.163085937000062 + ], + [ + 105.013488770000038, + 11.162109375000057 + ], + [ + 105.016296387000068, + 11.165893555000025 + ], + [ + 105.018920898000033, + 11.169128418000071 + ], + [ + 105.019287109000061, + 11.173522949000073 + ], + [ + 105.003906250000057, + 11.172912598000039 + ], + [ + 104.999328613000046, + 11.172912598000039 + ], + [ + 104.995300293000071, + 11.17272949200003 + ], + [ + 104.992309570000089, + 11.172912598000039 + ], + [ + 104.989074707000043, + 11.173278809000067 + ], + [ + 104.986328125000057, + 11.174072266000053 + ], + [ + 104.984313965000069, + 11.176879883000026 + ], + [ + 104.982299805000082, + 11.179504395000038 + ], + [ + 104.980285645000038, + 11.183105469000054 + ], + [ + 104.982299805000082, + 11.189514160000044 + ], + [ + 104.983276367000087, + 11.193298340000069 + ], + [ + 104.983886719000054, + 11.196289062000062 + ], + [ + 104.984497070000089, + 11.199096680000025 + ], + [ + 104.985290527000075, + 11.203125 + ], + [ + 104.984497070000089, + 11.205871582000043 + ], + [ + 104.983276367000087, + 11.209472656000059 + ], + [ + 104.982482910000044, + 11.212280273000033 + ], + [ + 104.981323242000087, + 11.215881348000039 + ], + [ + 104.980529785000044, + 11.220520020000038 + ], + [ + 104.977111816000047, + 11.223327637000068 + ], + [ + 104.974121094000054, + 11.225097656000059 + ], + [ + 104.969909668000071, + 11.227294922000056 + ], + [ + 104.966308594000054, + 11.229309082000043 + ], + [ + 104.962707520000038, + 11.232299805000025 + ], + [ + 104.958312988000046, + 11.233886719000054 + ], + [ + 104.955078125000057, + 11.235473633000026 + ], + [ + 104.952087402000075, + 11.236877441000047 + ], + [ + 104.948730469000054, + 11.238281250000057 + ], + [ + 104.945129395000038, + 11.239685059000067 + ], + [ + 104.94171142600004, + 11.241271973000039 + ], + [ + 104.938903809000067, + 11.243713379000042 + ], + [ + 104.935913086000085, + 11.247314453000058 + ], + [ + 104.933288574000073, + 11.251892090000069 + ], + [ + 104.930908203000058, + 11.257324219000054 + ], + [ + 104.929870605000076, + 11.261108398000033 + ], + [ + 104.928527832000043, + 11.26452636700003 + ], + [ + 104.927307129000042, + 11.268310547000056 + ], + [ + 104.92608642600004, + 11.271484375000057 + ], + [ + 104.929077148000033, + 11.274108887000068 + ], + [ + 104.933105469000054, + 11.280883789000029 + ], + [ + 104.934326172000056, + 11.283691406000059 + ], + [ + 104.936096191000047, + 11.287109375000057 + ], + [ + 104.937072754000042, + 11.28991699200003 + ], + [ + 104.938476562000062, + 11.294311523000033 + ], + [ + 104.939514160000044, + 11.298522949000073 + ], + [ + 104.939697266000053, + 11.302307129000042 + ], + [ + 104.939880371000072, + 11.307128906000059 + ], + [ + 104.939697266000053, + 11.31530761700003 + ], + [ + 104.939514160000044, + 11.321472168000071 + ], + [ + 104.939270020000038, + 11.32507324200003 + ], + [ + 104.938110352000081, + 11.328125 + ], + [ + 104.934692383000083, + 11.330505371000072 + ], + [ + 104.929870605000076, + 11.327880859000061 + ], + [ + 104.925292969000054, + 11.327270508000026 + ], + [ + 104.920898437000062, + 11.329528809000067 + ], + [ + 104.918884277000075, + 11.333679199000073 + ], + [ + 104.916076660000044, + 11.337097168000071 + ], + [ + 104.913330078000058, + 11.340087891000053 + ], + [ + 104.909484863000046, + 11.34210205100004 + ], + [ + 104.906311035000044, + 11.342285156000059 + ], + [ + 104.903320312000062, + 11.342529297000056 + ], + [ + 104.900512695000089, + 11.345092773000033 + ], + [ + 104.896728516000053, + 11.347106934000067 + ], + [ + 104.894714355000076, + 11.349304199000073 + ], + [ + 104.890502930000082, + 11.349304199000073 + ], + [ + 104.887084961000085, + 11.348327637000068 + ], + [ + 104.883300781000059, + 11.348876953000058 + ], + [ + 104.879882812000062, + 11.34851074200003 + ], + [ + 104.875915527000075, + 11.348083496000072 + ], + [ + 104.873291016000053, + 11.351074219000054 + ], + [ + 104.869079590000069, + 11.351074219000054 + ], + [ + 104.865295410000044, + 11.351928711000028 + ], + [ + 104.862487793000071, + 11.349121094000054 + ], + [ + 104.857910156000059, + 11.346313477000024 + ], + [ + 104.855712891000053, + 11.343505859000061 + ], + [ + 104.852478027000075, + 11.341674805000025 + ], + [ + 104.848510742000087, + 11.343078613000046 + ], + [ + 104.843505859000061, + 11.342895508000026 + ], + [ + 104.838500977000081, + 11.34210205100004 + ], + [ + 104.834716797000056, + 11.342285156000059 + ], + [ + 104.832092285000044, + 11.343688965000069 + ], + [ + 104.830505371000072, + 11.346923828000058 + ], + [ + 104.826293945000089, + 11.345520020000038 + ], + [ + 104.821716309000067, + 11.346313477000024 + ], + [ + 104.818481445000089, + 11.347900391000053 + ], + [ + 104.815490723000039, + 11.34851074200003 + ], + [ + 104.812072754000042, + 11.350280762000068 + ], + [ + 104.808105469000054, + 11.352722168000071 + ], + [ + 104.804870605000076, + 11.352478027000075 + ], + [ + 104.801330566000047, + 11.354309082000043 + ], + [ + 104.797119141000053, + 11.353698730000076 + ], + [ + 104.793884277000075, + 11.350891113000046 + ], + [ + 104.789489746000072, + 11.349670410000044 + ], + [ + 104.783691406000059, + 11.34851074200003 + ], + [ + 104.779479980000076, + 11.346923828000058 + ], + [ + 104.776489258000083, + 11.345886230000076 + ], + [ + 104.772705078000058, + 11.346130371000072 + ], + [ + 104.769714355000076, + 11.344299316000047 + ], + [ + 104.76593017600004, + 11.34210205100004 + ], + [ + 104.762329102000081, + 11.339721680000025 + ], + [ + 104.758911133000083, + 11.337524414000029 + ], + [ + 104.755126953000058, + 11.336914062000062 + ], + [ + 104.752502441000047, + 11.338500977000024 + ], + [ + 104.749694824000073, + 11.340087891000053 + ], + [ + 104.745727539000086, + 11.342285156000059 + ], + [ + 104.732482910000044, + 11.34991455100004 + ], + [ + 104.735717773000033, + 11.354492187000062 + ], + [ + 104.737915039000086, + 11.357482910000044 + ], + [ + 104.746704102000081, + 11.366699219000054 + ], + [ + 104.750488281000059, + 11.370727539000029 + ], + [ + 104.754882812000062, + 11.37530517600004 + ], + [ + 104.761901855000076, + 11.380676270000038 + ], + [ + 104.765075684000067, + 11.386474609000061 + ], + [ + 104.783691406000059, + 11.405517578000058 + ], + [ + 104.788330078000058, + 11.410095215000069 + ], + [ + 104.791687012000068, + 11.423095703000058 + ], + [ + 104.786926270000038, + 11.423706055000025 + ], + [ + 104.785888672000056, + 11.419494629000042 + ], + [ + 104.784301758000083, + 11.416076660000044 + ], + [ + 104.780883789000086, + 11.417724609000061 + ], + [ + 104.782287598000039, + 11.421691895000038 + ], + [ + 104.779113770000038, + 11.422119141000053 + ], + [ + 104.774475098000039, + 11.421691895000038 + ], + [ + 104.774475098000039, + 11.424926758000026 + ], + [ + 104.774475098000039, + 11.429077148000033 + ], + [ + 104.770874023000033, + 11.424926758000026 + ], + [ + 104.767517090000069, + 11.421691895000038 + ], + [ + 104.763122559000067, + 11.423706055000025 + ], + [ + 104.764282227000081, + 11.426330566000047 + ], + [ + 104.761291504000042, + 11.427307129000042 + ], + [ + 104.757873535000044, + 11.42608642600004 + ], + [ + 104.753112793000071, + 11.427673340000069 + ], + [ + 104.749877930000082, + 11.424926758000026 + ], + [ + 104.745727539000086, + 11.425720215000069 + ], + [ + 104.741516113000046, + 11.426513672000056 + ], + [ + 104.739501953000058, + 11.428710937000062 + ], + [ + 104.736328125000057, + 11.428283691000047 + ], + [ + 104.734130859000061, + 11.432312012000068 + ], + [ + 104.731079102000081, + 11.434326172000056 + ], + [ + 104.728515625000057, + 11.436706543000071 + ], + [ + 104.724121094000054, + 11.434692383000026 + ], + [ + 104.722473145000038, + 11.437927246000072 + ], + [ + 104.719909668000071, + 11.439086914000029 + ], + [ + 104.717712402000075, + 11.436096191000047 + ], + [ + 104.715270996000072, + 11.433471680000025 + ], + [ + 104.711730957000043, + 11.433105469000054 + ], + [ + 104.708129883000083, + 11.430480957000043 + ], + [ + 104.704528809000067, + 11.429504395000038 + ], + [ + 104.69952392600004, + 11.430297852000024 + ], + [ + 104.695922852000081, + 11.434692383000026 + ], + [ + 104.692871094000054, + 11.436279297000056 + ], + [ + 104.689697266000053, + 11.436279297000056 + ], + [ + 104.687927246000072, + 11.433105469000054 + ], + [ + 104.687072754000042, + 11.429870605000076 + ], + [ + 104.68389892600004, + 11.427673340000069 + ], + [ + 104.682312012000068, + 11.423706055000025 + ], + [ + 104.678710937000062, + 11.421875 + ], + [ + 104.675903320000089, + 11.423522949000073 + ], + [ + 104.674072266000053, + 11.425903320000032 + ], + [ + 104.671325684000067, + 11.426879883000026 + ], + [ + 104.667297363000046, + 11.428527832000043 + ], + [ + 104.664306641000053, + 11.431274414000029 + ], + [ + 104.661499023000033, + 11.434326172000056 + ], + [ + 104.656494141000053, + 11.435485840000069 + ], + [ + 104.656311035000044, + 11.441284180000025 + ], + [ + 104.656921387000068, + 11.445129395000038 + ], + [ + 104.656494141000053, + 11.44952392600004 + ], + [ + 104.658325195000089, + 11.455078125000057 + ], + [ + 104.659118652000075, + 11.460327148000033 + ], + [ + 104.660278320000089, + 11.466125488000046 + ], + [ + 104.661315918000071, + 11.471313477000024 + ], + [ + 104.662109375000057, + 11.475891113000046 + ], + [ + 104.662109375000057, + 11.480285645000038 + ], + [ + 104.662719727000081, + 11.485107422000056 + ], + [ + 104.662719727000081, + 11.490905762000068 + ], + [ + 104.661926270000038, + 11.494873047000056 + ], + [ + 104.663330078000058, + 11.49890136700003 + ], + [ + 104.665100098000039, + 11.502929687000062 + ], + [ + 104.665527344000054, + 11.507324219000054 + ], + [ + 104.666503906000059, + 11.512512207000043 + ], + [ + 104.667724609000061, + 11.517517090000069 + ], + [ + 104.668884277000075, + 11.522521973000039 + ], + [ + 104.670288086000085, + 11.528503418000071 + ], + [ + 104.671691895000038, + 11.534118652000075 + ], + [ + 104.673706055000082, + 11.540283203000058 + ], + [ + 104.675903320000089, + 11.544677734000061 + ], + [ + 104.675903320000089, + 11.548889160000044 + ], + [ + 104.67608642600004, + 11.551879883000026 + ], + [ + 104.677490234000061, + 11.556884766000053 + ], + [ + 104.678710937000062, + 11.560729980000076 + ], + [ + 104.678527832000043, + 11.56671142600004 + ], + [ + 104.677917480000076, + 11.572509766000053 + ], + [ + 104.677490234000061, + 11.580078125000057 + ], + [ + 104.677307129000042, + 11.586486816000047 + ], + [ + 104.678710937000062, + 11.596679687000062 + ], + [ + 104.678100586000085, + 11.601501465000069 + ], + [ + 104.680114746000072, + 11.610473633000026 + ], + [ + 104.681274414000086, + 11.617126465000069 + ], + [ + 104.682128906000059, + 11.622680664000029 + ], + [ + 104.685119629000042, + 11.629882812000062 + ], + [ + 104.686279297000056, + 11.632690430000025 + ], + [ + 104.686096191000047, + 11.636901855000076 + ], + [ + 104.686523437000062, + 11.641296387000068 + ], + [ + 104.687683105000076, + 11.645507812000062 + ], + [ + 104.691528320000089, + 11.654724121000072 + ], + [ + 104.693481445000089, + 11.660705566000047 + ], + [ + 104.693481445000089, + 11.665710449000073 + ], + [ + 104.695678711000085, + 11.670898437000062 + ], + [ + 104.698303223000039, + 11.677917480000076 + ], + [ + 104.701721191000047, + 11.685485840000069 + ], + [ + 104.708129883000083, + 11.696716309000067 + ], + [ + 104.715515137000068, + 11.708129883000026 + ], + [ + 104.718505859000061, + 11.712707520000038 + ], + [ + 104.720092773000033, + 11.716125488000046 + ], + [ + 104.722473145000038, + 11.721496582000043 + ], + [ + 104.725097656000059, + 11.728515625000057 + ], + [ + 104.727478027000075, + 11.73272705100004 + ], + [ + 104.730895996000072, + 11.741882324000073 + ], + [ + 104.734130859000061, + 11.751892090000069 + ], + [ + 104.745483398000033, + 11.785888672000056 + ], + [ + 104.746887207000043, + 11.788879395000038 + ], + [ + 104.748107910000044, + 11.791687012000068 + ], + [ + 104.749694824000073, + 11.796081543000071 + ], + [ + 104.751098633000083, + 11.800476074000073 + ], + [ + 104.751525879000042, + 11.803710937000062 + ], + [ + 104.751525879000042, + 11.807128906000059 + ], + [ + 104.751281738000046, + 11.810485840000069 + ], + [ + 104.751098633000083, + 11.815490723000039 + ], + [ + 104.751708984000061, + 11.821289062000062 + ], + [ + 104.748107910000044, + 11.822326660000044 + ], + [ + 104.744323730000076, + 11.823303223000039 + ], + [ + 104.740722656000059, + 11.824707031000059 + ], + [ + 104.739318848000039, + 11.828491211000028 + ], + [ + 104.74249267600004, + 11.830322266000053 + ], + [ + 104.746093750000057, + 11.830322266000053 + ], + [ + 104.750915527000075, + 11.829895020000038 + ], + [ + 104.755676270000038, + 11.827697754000042 + ], + [ + 104.761901855000076, + 11.829528809000067 + ], + [ + 104.764709473000039, + 11.830871582000043 + ], + [ + 104.767089844000054, + 11.833496094000054 + ], + [ + 104.769714355000076, + 11.834899902000075 + ], + [ + 104.773315430000082, + 11.835083008000026 + ], + [ + 104.777099609000061, + 11.836120605000076 + ], + [ + 104.779724121000072, + 11.837707520000038 + ], + [ + 104.782470703000058, + 11.839111328000058 + ], + [ + 104.779479980000076, + 11.842712402000075 + ], + [ + 104.776489258000083, + 11.846679687000062 + ], + [ + 104.773681641000053, + 11.850280762000068 + ], + [ + 104.770874023000033, + 11.853881836000028 + ], + [ + 104.771728516000053, + 11.857910156000059 + ], + [ + 104.769287109000061, + 11.861083984000061 + ], + [ + 104.771118164000086, + 11.864074707000043 + ], + [ + 104.771301270000038, + 11.86749267600004 + ], + [ + 104.768493652000075, + 11.871520996000072 + ], + [ + 104.764709473000039, + 11.88171386700003 + ], + [ + 104.767517090000069, + 11.883483887000068 + ], + [ + 104.769714355000076, + 11.885314941000047 + ], + [ + 104.772521973000039, + 11.886718750000057 + ], + [ + 104.775512695000089, + 11.883911133000026 + ], + [ + 104.777893066000047, + 11.881530762000068 + ], + [ + 104.780883789000086, + 11.881286621000072 + ], + [ + 104.782897949000073, + 11.885681152000075 + ], + [ + 104.787292480000076, + 11.888916016000053 + ], + [ + 104.791687012000068, + 11.890319824000073 + ], + [ + 104.796508789000086, + 11.89093017600004 + ], + [ + 104.800903320000089, + 11.89147949200003 + ], + [ + 104.805297852000081, + 11.892517090000069 + ], + [ + 104.810729980000076, + 11.894104004000042 + ], + [ + 104.814270020000038, + 11.89288330100004 + ], + [ + 104.817077637000068, + 11.890686035000044 + ], + [ + 104.821105957000043, + 11.888122559000067 + ], + [ + 104.822875977000081, + 11.88507080100004 + ], + [ + 104.825073242000087, + 11.882873535000044 + ] + ], + [ + [ + 104.917114258000083, + 11.721496582000043 + ], + [ + 104.916076660000044, + 11.716918945000032 + ], + [ + 104.912475586000085, + 11.712280273000033 + ], + [ + 104.911315918000071, + 11.70928955100004 + ], + [ + 104.910095215000069, + 11.704895020000038 + ], + [ + 104.909301758000083, + 11.700317383000026 + ], + [ + 104.906921387000068, + 11.696899414000029 + ], + [ + 104.904113770000038, + 11.694519043000071 + ], + [ + 104.900512695000089, + 11.691528320000032 + ], + [ + 104.899291992000087, + 11.687927246000072 + ], + [ + 104.899108887000068, + 11.684326172000056 + ], + [ + 104.897705078000058, + 11.672302246000072 + ], + [ + 104.892700195000089, + 11.672485352000024 + ], + [ + 104.88507080100004, + 11.672302246000072 + ], + [ + 104.878295898000033, + 11.67272949200003 + ], + [ + 104.87530517600004, + 11.67272949200003 + ], + [ + 104.871093750000057, + 11.67272949200003 + ], + [ + 104.867675781000059, + 11.67272949200003 + ], + [ + 104.862670898000033, + 11.67272949200003 + ], + [ + 104.861328125000057, + 11.668518066000047 + ], + [ + 104.858276367000087, + 11.672302246000072 + ], + [ + 104.856506348000039, + 11.677124023000033 + ], + [ + 104.853515625000057, + 11.679321289000029 + ], + [ + 104.851928711000085, + 11.682678223000039 + ], + [ + 104.849670410000044, + 11.686706543000071 + ], + [ + 104.845520020000038, + 11.69171142600004 + ], + [ + 104.845703125000057, + 11.694702148000033 + ], + [ + 104.844909668000071, + 11.697692871000072 + ], + [ + 104.844116211000085, + 11.701110840000069 + ], + [ + 104.842895508000083, + 11.705078125000057 + ], + [ + 104.841674805000082, + 11.708923340000069 + ], + [ + 104.839904785000044, + 11.714477539000029 + ], + [ + 104.836486816000047, + 11.71569824200003 + ], + [ + 104.833129883000083, + 11.71569824200003 + ], + [ + 104.830078125000057, + 11.715881348000039 + ], + [ + 104.826110840000069, + 11.717529297000056 + ], + [ + 104.822875977000081, + 11.713317871000072 + ], + [ + 104.823303223000039, + 11.708923340000069 + ], + [ + 104.819274902000075, + 11.708496094000054 + ], + [ + 104.817077637000068, + 11.706298828000058 + ], + [ + 104.815307617000087, + 11.703918457000043 + ], + [ + 104.815673828000058, + 11.700683594000054 + ], + [ + 104.815307617000087, + 11.697326660000044 + ], + [ + 104.814697266000053, + 11.692687988000046 + ], + [ + 104.81671142600004, + 11.689270020000038 + ], + [ + 104.815307617000087, + 11.686279297000056 + ], + [ + 104.812927246000072, + 11.68389892600004 + ], + [ + 104.811279297000056, + 11.681518555000025 + ], + [ + 104.810729980000076, + 11.676879883000026 + ], + [ + 104.813293457000043, + 11.673889160000044 + ], + [ + 104.809509277000075, + 11.673095703000058 + ], + [ + 104.806274414000086, + 11.673095703000058 + ], + [ + 104.803100586000085, + 11.672912598000039 + ], + [ + 104.799682617000087, + 11.672302246000072 + ], + [ + 104.796081543000071, + 11.671875 + ], + [ + 104.792114258000083, + 11.672302246000072 + ], + [ + 104.788085937000062, + 11.672119141000053 + ], + [ + 104.784729004000042, + 11.671508789000029 + ], + [ + 104.780273437000062, + 11.670898437000062 + ], + [ + 104.776489258000083, + 11.669494629000042 + ], + [ + 104.769714355000076, + 11.668090820000032 + ], + [ + 104.766906738000046, + 11.666687012000068 + ], + [ + 104.762084961000085, + 11.66632080100004 + ], + [ + 104.757080078000058, + 11.666076660000044 + ], + [ + 104.752319336000085, + 11.665893555000025 + ], + [ + 104.749328613000046, + 11.664489746000072 + ], + [ + 104.747497559000067, + 11.660522461000028 + ], + [ + 104.748901367000087, + 11.656311035000044 + ], + [ + 104.746704102000081, + 11.653320312000062 + ], + [ + 104.74249267600004, + 11.646301270000038 + ], + [ + 104.743896484000061, + 11.640686035000044 + ], + [ + 104.742919922000056, + 11.634887695000032 + ], + [ + 104.741882324000073, + 11.629089355000076 + ], + [ + 104.740905762000068, + 11.625671387000068 + ], + [ + 104.740478516000053, + 11.622497559000067 + ], + [ + 104.739501953000058, + 11.618896484000061 + ], + [ + 104.738098145000038, + 11.615295410000044 + ], + [ + 104.735473633000083, + 11.609497070000032 + ], + [ + 104.734497070000089, + 11.605895996000072 + ], + [ + 104.735717773000033, + 11.601684570000032 + ], + [ + 104.735717773000033, + 11.59851074200003 + ], + [ + 104.734130859000061, + 11.595703125000057 + ], + [ + 104.732116699000073, + 11.592712402000075 + ], + [ + 104.732116699000073, + 11.589111328000058 + ], + [ + 104.733703613000046, + 11.585083008000026 + ], + [ + 104.735473633000083, + 11.582092285000044 + ], + [ + 104.732910156000059, + 11.580322266000053 + ], + [ + 104.729309082000043, + 11.575683594000054 + ], + [ + 104.724487305000082, + 11.575317383000026 + ], + [ + 104.719726562000062, + 11.575500488000046 + ], + [ + 104.716308594000054, + 11.575927734000061 + ], + [ + 104.712707520000038, + 11.57647705100004 + ], + [ + 104.713500977000081, + 11.57312011700003 + ], + [ + 104.716674805000082, + 11.572082520000038 + ], + [ + 104.720886230000076, + 11.571716309000067 + ], + [ + 104.722473145000038, + 11.567687988000046 + ], + [ + 104.722717285000044, + 11.564514160000044 + ], + [ + 104.720092773000033, + 11.561706543000071 + ], + [ + 104.722473145000038, + 11.559875488000046 + ], + [ + 104.725097656000059, + 11.557128906000059 + ], + [ + 104.726318359000061, + 11.554077148000033 + ], + [ + 104.727294922000056, + 11.551330566000047 + ], + [ + 104.727722168000071, + 11.548278809000067 + ], + [ + 104.727905273000033, + 11.544677734000061 + ], + [ + 104.731323242000087, + 11.544128418000071 + ], + [ + 104.73468017600004, + 11.543884277000075 + ], + [ + 104.738525391000053, + 11.545471191000047 + ], + [ + 104.741882324000073, + 11.543884277000075 + ], + [ + 104.743896484000061, + 11.539672852000024 + ], + [ + 104.743530273000033, + 11.534729004000042 + ], + [ + 104.744689941000047, + 11.530517578000058 + ], + [ + 104.748107910000044, + 11.527893066000047 + ], + [ + 104.751892090000069, + 11.529296875000057 + ], + [ + 104.755920410000044, + 11.530273437000062 + ], + [ + 104.758728027000075, + 11.526489258000026 + ], + [ + 104.761901855000076, + 11.523071289000029 + ], + [ + 104.767272949000073, + 11.520080566000047 + ], + [ + 104.768493652000075, + 11.515075684000067 + ], + [ + 104.768676758000083, + 11.509094238000046 + ], + [ + 104.768493652000075, + 11.505126953000058 + ], + [ + 104.767089844000054, + 11.501281738000046 + ], + [ + 104.764892578000058, + 11.498718262000068 + ], + [ + 104.763488770000038, + 11.495910645000038 + ], + [ + 104.762878418000071, + 11.492675781000059 + ], + [ + 104.758911133000083, + 11.490295410000044 + ], + [ + 104.754089355000076, + 11.489074707000043 + ], + [ + 104.75030517600004, + 11.489318848000039 + ], + [ + 104.748901367000087, + 11.485717773000033 + ], + [ + 104.746276855000076, + 11.482482910000044 + ], + [ + 104.745727539000086, + 11.478515625000057 + ], + [ + 104.744873047000056, + 11.474121094000054 + ], + [ + 104.744873047000056, + 11.470886230000076 + ], + [ + 104.744873047000056, + 11.467285156000059 + ], + [ + 104.744873047000056, + 11.463073730000076 + ], + [ + 104.744873047000056, + 11.459716797000056 + ], + [ + 104.744689941000047, + 11.455322266000053 + ], + [ + 104.748901367000087, + 11.455505371000072 + ], + [ + 104.752929687000062, + 11.456298828000058 + ], + [ + 104.754516602000081, + 11.452697754000042 + ], + [ + 104.759704590000069, + 11.452087402000075 + ], + [ + 104.757690430000082, + 11.454895020000038 + ], + [ + 104.755676270000038, + 11.457275391000053 + ], + [ + 104.759277344000054, + 11.458129883000026 + ], + [ + 104.764099121000072, + 11.457702637000068 + ], + [ + 104.765319824000073, + 11.460327148000033 + ], + [ + 104.764709473000039, + 11.463073730000076 + ], + [ + 104.768676758000083, + 11.462890625000057 + ], + [ + 104.773315430000082, + 11.462280273000033 + ], + [ + 104.774475098000039, + 11.458679199000073 + ], + [ + 104.778503418000071, + 11.456909180000025 + ], + [ + 104.782287598000039, + 11.456115723000039 + ], + [ + 104.784729004000042, + 11.453918457000043 + ], + [ + 104.782897949000073, + 11.449707031000059 + ], + [ + 104.785095215000069, + 11.447082520000038 + ], + [ + 104.788330078000058, + 11.445922852000024 + ], + [ + 104.792724609000061, + 11.447082520000038 + ], + [ + 104.794311523000033, + 11.443725586000028 + ], + [ + 104.798095703000058, + 11.444519043000071 + ], + [ + 104.798522949000073, + 11.439086914000029 + ], + [ + 104.801879883000083, + 11.434509277000075 + ], + [ + 104.804870605000076, + 11.431884766000053 + ], + [ + 104.80889892600004, + 11.430480957000043 + ], + [ + 104.813110352000081, + 11.430480957000043 + ], + [ + 104.817504883000083, + 11.432128906000059 + ], + [ + 104.819091797000056, + 11.436279297000056 + ], + [ + 104.817077637000068, + 11.439514160000044 + ], + [ + 104.819702148000033, + 11.442687988000046 + ], + [ + 104.822875977000081, + 11.443908691000047 + ], + [ + 104.82452392600004, + 11.441284180000025 + ], + [ + 104.826721191000047, + 11.438903809000067 + ], + [ + 104.828125, + 11.435302734000061 + ], + [ + 104.830871582000043, + 11.431274414000029 + ], + [ + 104.844116211000085, + 11.430480957000043 + ], + [ + 104.848693848000039, + 11.430480957000043 + ], + [ + 104.852905273000033, + 11.429687500000057 + ], + [ + 104.855712891000053, + 11.425720215000069 + ], + [ + 104.858886719000054, + 11.423889160000044 + ], + [ + 104.862915039000086, + 11.425292969000054 + ], + [ + 104.86749267600004, + 11.426879883000026 + ], + [ + 104.869689941000047, + 11.424316406000059 + ], + [ + 104.872924805000082, + 11.421508789000029 + ], + [ + 104.875122070000089, + 11.425476074000073 + ], + [ + 104.877319336000085, + 11.429687500000057 + ], + [ + 104.879516602000081, + 11.434326172000056 + ], + [ + 104.882080078000058, + 11.436279297000056 + ], + [ + 104.885681152000075, + 11.433715820000032 + ], + [ + 104.888122559000067, + 11.430480957000043 + ], + [ + 104.891113281000059, + 11.431884766000053 + ], + [ + 104.893920898000033, + 11.43389892600004 + ], + [ + 104.897521973000039, + 11.435485840000069 + ], + [ + 104.90069580100004, + 11.435119629000042 + ], + [ + 104.904724121000072, + 11.435729980000076 + ], + [ + 104.908874512000068, + 11.434875488000046 + ], + [ + 104.912902832000043, + 11.431884766000053 + ], + [ + 104.916076660000044, + 11.430297852000024 + ], + [ + 104.918701172000056, + 11.429077148000033 + ], + [ + 104.922302246000072, + 11.428894043000071 + ], + [ + 104.922729492000087, + 11.443908691000047 + ], + [ + 104.923095703000058, + 11.447082520000038 + ], + [ + 104.921875, + 11.450500488000046 + ], + [ + 104.921081543000071, + 11.457702637000068 + ], + [ + 104.921508789000086, + 11.460876465000069 + ], + [ + 104.919311523000033, + 11.463317871000072 + ], + [ + 104.91827392600004, + 11.466674805000025 + ], + [ + 104.920104980000076, + 11.477111816000047 + ], + [ + 104.921325684000067, + 11.480895996000072 + ], + [ + 104.921508789000086, + 11.484497070000032 + ], + [ + 104.935729980000076, + 11.489685059000067 + ], + [ + 104.947082520000038, + 11.493713379000042 + ], + [ + 104.948913574000073, + 11.490112305000025 + ], + [ + 104.951110840000069, + 11.485107422000056 + ], + [ + 104.953308105000076, + 11.481079102000024 + ], + [ + 104.955322266000053, + 11.477722168000071 + ], + [ + 104.957519531000059, + 11.474304199000073 + ], + [ + 104.960327148000033, + 11.469909668000071 + ], + [ + 104.963317871000072, + 11.466491699000073 + ], + [ + 104.966918945000089, + 11.464111328000058 + ], + [ + 104.970092773000033, + 11.463073730000076 + ], + [ + 104.973083496000072, + 11.462707520000038 + ], + [ + 104.977722168000071, + 11.462280273000033 + ], + [ + 104.982482910000044, + 11.461486816000047 + ], + [ + 104.987487793000071, + 11.463073730000076 + ], + [ + 104.991271973000039, + 11.464111328000058 + ], + [ + 104.994079590000069, + 11.464721680000025 + ], + [ + 104.997924805000082, + 11.465087891000053 + ], + [ + 105.002685547000056, + 11.465881348000039 + ], + [ + 105.007080078000058, + 11.466125488000046 + ], + [ + 105.01007080100004, + 11.466125488000046 + ], + [ + 105.013671875000057, + 11.466125488000046 + ], + [ + 105.017089844000054, + 11.465881348000039 + ], + [ + 105.021118164000086, + 11.465881348000039 + ], + [ + 105.024108887000068, + 11.46569824200003 + ], + [ + 105.029724121000072, + 11.46569824200003 + ], + [ + 105.028930664000086, + 11.469299316000047 + ], + [ + 105.031127930000082, + 11.472290039000029 + ], + [ + 105.034484863000046, + 11.475097656000059 + ], + [ + 105.038330078000058, + 11.477722168000071 + ], + [ + 105.043518066000047, + 11.480102539000029 + ], + [ + 105.049072266000053, + 11.482299805000025 + ], + [ + 105.029296875000057, + 11.483520508000026 + ], + [ + 105.029113770000038, + 11.488098145000038 + ], + [ + 105.029113770000038, + 11.491271973000039 + ], + [ + 105.028076172000056, + 11.494506836000028 + ], + [ + 105.028076172000056, + 11.497680664000029 + ], + [ + 105.028503418000071, + 11.501525879000042 + ], + [ + 105.027709961000085, + 11.506896973000039 + ], + [ + 105.026916504000042, + 11.512329102000024 + ], + [ + 105.026306152000075, + 11.515686035000044 + ], + [ + 105.027099609000061, + 11.518676758000026 + ], + [ + 105.029907227000081, + 11.523315430000025 + ], + [ + 105.035095215000069, + 11.528076172000056 + ], + [ + 105.037292480000076, + 11.531311035000044 + ], + [ + 105.039123535000044, + 11.535522461000028 + ], + [ + 105.041687012000068, + 11.538879395000038 + ], + [ + 105.037292480000076, + 11.540283203000058 + ], + [ + 105.032714844000054, + 11.541687012000068 + ], + [ + 105.028320312000062, + 11.542297363000046 + ], + [ + 105.022277832000043, + 11.54327392600004 + ], + [ + 105.017700195000089, + 11.545288086000028 + ], + [ + 105.014892578000058, + 11.543884277000075 + ], + [ + 105.008483887000068, + 11.543884277000075 + ], + [ + 105.003112793000071, + 11.543701172000056 + ], + [ + 104.999511719000054, + 11.543518066000047 + ], + [ + 104.994873047000056, + 11.54327392600004 + ], + [ + 104.989501953000058, + 11.543884277000075 + ], + [ + 104.985290527000075, + 11.544677734000061 + ], + [ + 104.980712891000053, + 11.545288086000028 + ], + [ + 104.976074219000054, + 11.546081543000071 + ], + [ + 104.971313477000081, + 11.547485352000024 + ], + [ + 104.967529297000056, + 11.549316406000059 + ], + [ + 104.963317871000072, + 11.552124023000033 + ], + [ + 104.958679199000073, + 11.554321289000029 + ], + [ + 104.955505371000072, + 11.555908203000058 + ], + [ + 104.95147705100004, + 11.558105469000054 + ], + [ + 104.948303223000039, + 11.560485840000069 + ], + [ + 104.945922852000081, + 11.563110352000024 + ], + [ + 104.945129395000038, + 11.575927734000061 + ], + [ + 104.944702148000033, + 11.580688477000024 + ], + [ + 104.944091797000056, + 11.585510254000042 + ], + [ + 104.943481445000089, + 11.588928223000039 + ], + [ + 104.942687988000046, + 11.592285156000059 + ], + [ + 104.940917969000054, + 11.597106934000067 + ], + [ + 104.939270020000038, + 11.600891113000046 + ], + [ + 104.939086914000086, + 11.605712891000053 + ], + [ + 104.935485840000069, + 11.611083984000061 + ], + [ + 104.934692383000083, + 11.614929199000073 + ], + [ + 104.933471680000082, + 11.618713379000042 + ], + [ + 104.932312012000068, + 11.623718262000068 + ], + [ + 104.933471680000082, + 11.627685547000056 + ], + [ + 104.93389892600004, + 11.631103516000053 + ], + [ + 104.934692383000083, + 11.633911133000026 + ], + [ + 104.936279297000056, + 11.639099121000072 + ], + [ + 104.937683105000076, + 11.642272949000073 + ], + [ + 104.939880371000072, + 11.645507812000062 + ], + [ + 104.941894531000059, + 11.648071289000029 + ], + [ + 104.943908691000047, + 11.651672363000046 + ], + [ + 104.946716309000067, + 11.654907227000024 + ], + [ + 104.950683594000054, + 11.665893555000025 + ], + [ + 104.952270508000083, + 11.669921875000057 + ], + [ + 104.954528809000067, + 11.675109863000046 + ], + [ + 104.958129883000083, + 11.678894043000071 + ], + [ + 104.959899902000075, + 11.682922363000046 + ], + [ + 104.961120605000076, + 11.686279297000056 + ], + [ + 104.962280273000033, + 11.689880371000072 + ], + [ + 104.963317871000072, + 11.695312500000057 + ], + [ + 104.964294434000067, + 11.699279785000044 + ], + [ + 104.965515137000068, + 11.703491211000028 + ], + [ + 104.966918945000089, + 11.707702637000068 + ], + [ + 104.967712402000075, + 11.710876465000069 + ], + [ + 104.963500977000081, + 11.711120605000076 + ], + [ + 104.960327148000033, + 11.711730957000043 + ], + [ + 104.958312988000046, + 11.715881348000039 + ], + [ + 104.955322266000053, + 11.718872070000032 + ], + [ + 104.95147705100004, + 11.723083496000072 + ], + [ + 104.949279785000044, + 11.726074219000054 + ], + [ + 104.948486328000058, + 11.729309082000043 + ], + [ + 104.947509766000053, + 11.73272705100004 + ], + [ + 104.944274902000075, + 11.734924316000047 + ], + [ + 104.939880371000072, + 11.735900879000042 + ], + [ + 104.936523437000062, + 11.736083984000061 + ], + [ + 104.931884766000053, + 11.736083984000061 + ], + [ + 104.927917480000076, + 11.736083984000061 + ], + [ + 104.923278809000067, + 11.736083984000061 + ], + [ + 104.918884277000075, + 11.736511230000076 + ], + [ + 104.917480469000054, + 11.732299805000025 + ], + [ + 104.917480469000054, + 11.728881836000028 + ], + [ + 104.917724609000061, + 11.725708008000026 + ], + [ + 104.917114258000083, + 11.721496582000043 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 0.67716971837600004, + "Shape_Area": 0.012521726987400001, + "ADM1_EN": "Kep", + "ADM1_PCODE": "KH23", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 104.331115723000039, + 10.397094727000024 + ], + [ + 104.328125, + 10.394470215000069 + ], + [ + 104.327514648000033, + 10.397888184000067 + ], + [ + 104.331115723000039, + 10.397094727000024 + ] + ] + ], + [ + [ + [ + 104.326110840000069, + 10.430297852000024 + ], + [ + 104.322692871000072, + 10.429870605000076 + ], + [ + 104.320312500000057, + 10.432312012000068 + ], + [ + 104.316284180000082, + 10.432922363000046 + ], + [ + 104.319519043000071, + 10.436706543000071 + ], + [ + 104.321289062000062, + 10.439514160000044 + ], + [ + 104.322082520000038, + 10.443298340000069 + ], + [ + 104.326293945000032, + 10.442687988000046 + ], + [ + 104.330688477000081, + 10.441284180000025 + ], + [ + 104.333679199000073, + 10.438110352000024 + ], + [ + 104.333129883000083, + 10.43389892600004 + ], + [ + 104.329284668000071, + 10.432678223000039 + ], + [ + 104.326110840000069, + 10.430297852000024 + ] + ] + ], + [ + [ + [ + 104.405090332000043, + 10.471923828000058 + ], + [ + 104.401916504000042, + 10.474487305000025 + ], + [ + 104.401916504000042, + 10.470886230000076 + ], + [ + 104.405090332000043, + 10.471923828000058 + ], + [ + 104.405517578000058, + 10.467712402000075 + ], + [ + 104.408325195000032, + 10.469726562000062 + ], + [ + 104.412292480000076, + 10.470520020000038 + ], + [ + 104.414489746000072, + 10.473876953000058 + ], + [ + 104.419311523000033, + 10.471496582000043 + ], + [ + 104.418090820000032, + 10.468688965000069 + ], + [ + 104.415893555000082, + 10.466308594000054 + ], + [ + 104.419494629000042, + 10.464904785000044 + ], + [ + 104.421691895000038, + 10.461914062000062 + ], + [ + 104.423095703000058, + 10.45928955100004 + ], + [ + 104.42608642600004, + 10.458129883000026 + ], + [ + 104.424316406000059, + 10.453918457000043 + ], + [ + 104.415100098000039, + 10.446105957000043 + ], + [ + 104.411926270000038, + 10.446899414000029 + ], + [ + 104.408691406000059, + 10.447875977000024 + ], + [ + 104.405273437000062, + 10.448303223000039 + ], + [ + 104.401916504000042, + 10.447875977000024 + ], + [ + 104.397888184000067, + 10.449890137000068 + ], + [ + 104.393493652000075, + 10.451293945000032 + ], + [ + 104.389099121000072, + 10.453491211000028 + ], + [ + 104.385498047000056, + 10.457519531000059 + ], + [ + 104.382324219000054, + 10.460510254000042 + ], + [ + 104.380310059000067, + 10.463928223000039 + ], + [ + 104.377502441000047, + 10.468505859000061 + ], + [ + 104.374877930000082, + 10.472106934000067 + ], + [ + 104.372680664000086, + 10.47491455100004 + ], + [ + 104.370483398000033, + 10.477905273000033 + ], + [ + 104.368530273000033, + 10.480285645000038 + ], + [ + 104.366699219000054, + 10.482482910000044 + ], + [ + 104.364685059000067, + 10.484924316000047 + ], + [ + 104.361511230000076, + 10.488098145000038 + ], + [ + 104.357299805000082, + 10.491699219000054 + ], + [ + 104.355895996000072, + 10.494323730000076 + ], + [ + 104.352722168000071, + 10.494873047000056 + ], + [ + 104.349304199000073, + 10.496704102000024 + ], + [ + 104.345275879000042, + 10.496520996000072 + ], + [ + 104.342285156000059, + 10.496093750000057 + ], + [ + 104.339477539000086, + 10.493530273000033 + ], + [ + 104.336120605000076, + 10.49108886700003 + ], + [ + 104.331909180000082, + 10.488891602000024 + ], + [ + 104.327697754000042, + 10.486877441000047 + ], + [ + 104.323730469000054, + 10.485107422000056 + ], + [ + 104.320922852000081, + 10.483520508000026 + ], + [ + 104.318115234000061, + 10.481689453000058 + ], + [ + 104.313293457000043, + 10.479919434000067 + ], + [ + 104.308288574000073, + 10.478271484000061 + ], + [ + 104.304077148000033, + 10.476684570000032 + ], + [ + 104.299926758000083, + 10.476684570000032 + ], + [ + 104.295288086000085, + 10.478698730000076 + ], + [ + 104.290527344000054, + 10.479309082000043 + ], + [ + 104.288330078000058, + 10.481689453000058 + ], + [ + 104.288696289000086, + 10.484924316000047 + ], + [ + 104.288879395000038, + 10.488525391000053 + ], + [ + 104.289123535000044, + 10.492126465000069 + ], + [ + 104.288879395000038, + 10.495483398000033 + ], + [ + 104.288330078000058, + 10.498718262000068 + ], + [ + 104.287719727000081, + 10.501525879000042 + ], + [ + 104.287719727000081, + 10.505676270000038 + ], + [ + 104.287902832000043, + 10.509704590000069 + ], + [ + 104.286682129000042, + 10.513488770000038 + ], + [ + 104.284912109000061, + 10.518127441000047 + ], + [ + 104.282897949000073, + 10.522521973000039 + ], + [ + 104.281921387000068, + 10.525329590000069 + ], + [ + 104.280883789000086, + 10.528076172000056 + ], + [ + 104.279113770000038, + 10.531677246000072 + ], + [ + 104.276672363000046, + 10.535278320000032 + ], + [ + 104.275085449000073, + 10.538330078000058 + ], + [ + 104.273315430000082, + 10.540710449000073 + ], + [ + 104.270874023000033, + 10.544311523000033 + ], + [ + 104.26788330100004, + 10.547119141000053 + ], + [ + 104.266479492000087, + 10.551513672000056 + ], + [ + 104.266906738000046, + 10.554687500000057 + ], + [ + 104.266113281000059, + 10.558715820000032 + ], + [ + 104.269104004000042, + 10.560729980000076 + ], + [ + 104.270874023000033, + 10.563110352000024 + ], + [ + 104.271118164000086, + 10.567321777000075 + ], + [ + 104.271484375000057, + 10.572082520000038 + ], + [ + 104.272094727000081, + 10.576110840000069 + ], + [ + 104.272888184000067, + 10.579711914000029 + ], + [ + 104.274108887000068, + 10.584106445000032 + ], + [ + 104.275085449000073, + 10.587890625000057 + ], + [ + 104.276916504000042, + 10.590515137000068 + ], + [ + 104.280273437000062, + 10.588073730000076 + ], + [ + 104.284301758000083, + 10.584716797000056 + ], + [ + 104.287475586000085, + 10.582092285000044 + ], + [ + 104.289916992000087, + 10.579895020000038 + ], + [ + 104.294311523000033, + 10.576721191000047 + ], + [ + 104.298278809000067, + 10.576904297000056 + ], + [ + 104.302917480000076, + 10.575683594000054 + ], + [ + 104.306701660000044, + 10.57507324200003 + ], + [ + 104.311096191000047, + 10.574890137000068 + ], + [ + 104.314697266000053, + 10.574096680000025 + ], + [ + 104.318298340000069, + 10.573486328000058 + ], + [ + 104.322326660000044, + 10.573730469000054 + ], + [ + 104.327514648000033, + 10.573730469000054 + ], + [ + 104.333312988000046, + 10.57452392600004 + ], + [ + 104.338684082000043, + 10.576110840000069 + ], + [ + 104.342895508000083, + 10.577880859000061 + ], + [ + 104.346923828000058, + 10.578308105000076 + ], + [ + 104.351318359000061, + 10.578125 + ], + [ + 104.354675293000071, + 10.577880859000061 + ], + [ + 104.358520508000083, + 10.578125 + ], + [ + 104.363098145000038, + 10.577514648000033 + ], + [ + 104.369323730000076, + 10.576293945000032 + ], + [ + 104.373291016000053, + 10.570495605000076 + ], + [ + 104.37530517600004, + 10.575500488000046 + ], + [ + 104.378295898000033, + 10.57507324200003 + ], + [ + 104.383911133000083, + 10.571289062000062 + ], + [ + 104.385498047000056, + 10.568115234000061 + ], + [ + 104.386108398000033, + 10.564086914000029 + ], + [ + 104.386108398000033, + 10.560729980000076 + ], + [ + 104.38507080100004, + 10.556884766000053 + ], + [ + 104.385498047000056, + 10.54968261700003 + ], + [ + 104.385314941000047, + 10.546081543000071 + ], + [ + 104.386291504000042, + 10.541687012000068 + ], + [ + 104.39093017600004, + 10.538085937000062 + ], + [ + 104.394287109000061, + 10.535522461000028 + ], + [ + 104.396728516000053, + 10.53210449200003 + ], + [ + 104.397521973000039, + 10.528930664000029 + ], + [ + 104.398681641000053, + 10.525878906000059 + ], + [ + 104.402709961000085, + 10.523925781000059 + ], + [ + 104.406921387000068, + 10.522888184000067 + ], + [ + 104.411499023000033, + 10.520874023000033 + ], + [ + 104.414672852000081, + 10.519714355000076 + ], + [ + 104.413879395000038, + 10.514282227000024 + ], + [ + 104.414672852000081, + 10.508483887000068 + ], + [ + 104.417907715000069, + 10.504089355000076 + ], + [ + 104.41632080100004, + 10.499084473000039 + ], + [ + 104.418518066000047, + 10.496276855000076 + ], + [ + 104.421508789000086, + 10.493530273000033 + ], + [ + 104.420104980000076, + 10.490112305000025 + ], + [ + 104.415893555000082, + 10.488708496000072 + ], + [ + 104.412109375000057, + 10.487487793000071 + ], + [ + 104.409301758000083, + 10.488891602000024 + ], + [ + 104.406127930000082, + 10.490478516000053 + ], + [ + 104.407897949000073, + 10.493713379000042 + ], + [ + 104.402709961000085, + 10.492919922000056 + ], + [ + 104.400878906000059, + 10.488525391000053 + ], + [ + 104.401306152000075, + 10.484924316000047 + ], + [ + 104.404113770000038, + 10.480712891000053 + ], + [ + 104.407287598000039, + 10.483093262000068 + ], + [ + 104.407897949000073, + 10.479492187000062 + ], + [ + 104.407104492000087, + 10.476074219000054 + ], + [ + 104.405090332000043, + 10.471923828000058 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 6.5428655730800003, + "Shape_Area": 0.91188681507000002, + "ADM1_EN": "Koh Kong", + "ADM1_PCODE": "KH09", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 103.199279785000044, + 10.802917480000076 + ], + [ + 103.194274902000075, + 10.801330566000047 + ], + [ + 103.192321777000075, + 10.804077148000033 + ], + [ + 103.194885254000042, + 10.805725098000039 + ], + [ + 103.199707031000059, + 10.807312012000068 + ], + [ + 103.204528809000067, + 10.805297852000024 + ], + [ + 103.199279785000044, + 10.802917480000076 + ] + ] + ], + [ + [ + [ + 103.188903809000067, + 10.831909180000025 + ], + [ + 103.190673828000058, + 10.827514648000033 + ], + [ + 103.194519043000071, + 10.826293945000032 + ], + [ + 103.196899414000086, + 10.824096680000025 + ], + [ + 103.195129395000038, + 10.821105957000043 + ], + [ + 103.189880371000072, + 10.819519043000071 + ], + [ + 103.184082031000059, + 10.819091797000056 + ], + [ + 103.180297852000081, + 10.818298340000069 + ], + [ + 103.177490234000061, + 10.817077637000068 + ], + [ + 103.174682617000087, + 10.817871094000054 + ], + [ + 103.172485352000081, + 10.819702148000033 + ], + [ + 103.170715332000043, + 10.822692871000072 + ], + [ + 103.168518066000047, + 10.826721191000047 + ], + [ + 103.167297363000046, + 10.831298828000058 + ], + [ + 103.171508789000086, + 10.830322266000053 + ], + [ + 103.175476074000073, + 10.831909180000025 + ], + [ + 103.179870605000076, + 10.833496094000054 + ], + [ + 103.183471680000082, + 10.836120605000076 + ], + [ + 103.186279297000056, + 10.833679199000073 + ], + [ + 103.188903809000067, + 10.831909180000025 + ] + ] + ], + [ + [ + [ + 103.090881348000039, + 10.890075684000067 + ], + [ + 103.087097168000071, + 10.888488770000038 + ], + [ + 103.083923340000069, + 10.888916016000053 + ], + [ + 103.080078125000057, + 10.888671875000057 + ], + [ + 103.077087402000075, + 10.887878418000071 + ], + [ + 103.073120117000087, + 10.888122559000067 + ], + [ + 103.069274902000075, + 10.888305664000029 + ], + [ + 103.067321777000075, + 10.890502930000025 + ], + [ + 103.068298340000069, + 10.893920898000033 + ], + [ + 103.069274902000075, + 10.897277832000043 + ], + [ + 103.071472168000071, + 10.89929199200003 + ], + [ + 103.072082520000038, + 10.902709961000028 + ], + [ + 103.072692871000072, + 10.905700684000067 + ], + [ + 103.076293945000032, + 10.904724121000072 + ], + [ + 103.079711914000086, + 10.901916504000042 + ], + [ + 103.083679199000073, + 10.898498535000044 + ], + [ + 103.087097168000071, + 10.895080566000047 + ], + [ + 103.090270996000072, + 10.893920898000033 + ], + [ + 103.090881348000039, + 10.890075684000067 + ] + ] + ], + [ + [ + [ + 103.062683105000076, + 10.908081055000025 + ], + [ + 103.05889892600004, + 10.906494141000053 + ], + [ + 103.057312012000068, + 10.911071777000075 + ], + [ + 103.060485840000069, + 10.909912109000061 + ], + [ + 103.062683105000076, + 10.908081055000025 + ] + ] + ], + [ + [ + [ + 103.075683594000054, + 10.934692383000026 + ], + [ + 103.073303223000039, + 10.931091309000067 + ], + [ + 103.072082520000038, + 10.93389892600004 + ], + [ + 103.073120117000087, + 10.938110352000024 + ], + [ + 103.076110840000069, + 10.942321777000075 + ], + [ + 103.079711914000086, + 10.944885254000042 + ], + [ + 103.080505371000072, + 10.942077637000068 + ], + [ + 103.079711914000086, + 10.939086914000029 + ], + [ + 103.077514648000033, + 10.937072754000042 + ], + [ + 103.075683594000054, + 10.934692383000026 + ] + ] + ], + [ + [ + [ + 103.054870605000076, + 10.957519531000059 + ], + [ + 103.053283691000047, + 10.954528809000067 + ], + [ + 103.049926758000083, + 10.954711914000029 + ], + [ + 103.047485352000081, + 10.956481934000067 + ], + [ + 103.050476074000073, + 10.960083008000026 + ], + [ + 103.055480957000043, + 10.960876465000069 + ], + [ + 103.054870605000076, + 10.957519531000059 + ] + ] + ], + [ + [ + [ + 103.073486328000058, + 10.977294922000056 + ], + [ + 103.067871094000054, + 10.974487305000025 + ], + [ + 103.068725586000085, + 10.978515625000057 + ], + [ + 103.071289062000062, + 10.981506348000039 + ], + [ + 103.074890137000068, + 10.982482910000044 + ], + [ + 103.078918457000043, + 10.981872559000067 + ], + [ + 103.077880859000061, + 10.978515625000057 + ], + [ + 103.073486328000058, + 10.977294922000056 + ] + ] + ], + [ + [ + [ + 102.985290527000075, + 11.40850830100004 + ], + [ + 102.988708496000072, + 11.408325195000032 + ], + [ + 102.991882324000073, + 11.409729004000042 + ], + [ + 102.995117187000062, + 11.410705566000047 + ], + [ + 102.997314453000058, + 11.413085937000062 + ], + [ + 103.000488281000059, + 11.416076660000044 + ], + [ + 103.005126953000058, + 11.41827392600004 + ], + [ + 103.008728027000075, + 11.418090820000032 + ], + [ + 103.013305664000086, + 11.418518066000047 + ], + [ + 103.017089844000054, + 11.41632080100004 + ], + [ + 103.019287109000061, + 11.413513184000067 + ], + [ + 103.020690918000071, + 11.410522461000028 + ], + [ + 103.022521973000039, + 11.407714844000054 + ], + [ + 103.023315430000082, + 11.404479980000076 + ], + [ + 103.023071289000086, + 11.400512695000032 + ], + [ + 103.025329590000069, + 11.396728516000053 + ], + [ + 103.028320312000062, + 11.390319824000073 + ], + [ + 103.030090332000043, + 11.387084961000028 + ], + [ + 103.031677246000072, + 11.383911133000026 + ], + [ + 103.033691406000059, + 11.380126953000058 + ], + [ + 103.034301758000083, + 11.377319336000028 + ], + [ + 103.034729004000042, + 11.374328613000046 + ], + [ + 103.033691406000059, + 11.370910645000038 + ], + [ + 103.031494141000053, + 11.366516113000046 + ], + [ + 103.030700684000067, + 11.361511230000076 + ], + [ + 103.029907227000081, + 11.357482910000044 + ], + [ + 103.028503418000071, + 11.353088379000042 + ], + [ + 103.028320312000062, + 11.348693848000039 + ], + [ + 103.029113770000038, + 11.345703125000057 + ], + [ + 103.031311035000044, + 11.343505859000061 + ], + [ + 103.034484863000046, + 11.340087891000053 + ], + [ + 103.038085937000062, + 11.337890625000057 + ], + [ + 103.040710449000073, + 11.335327148000033 + ], + [ + 103.041687012000068, + 11.331481934000067 + ], + [ + 103.041076660000044, + 11.328491211000028 + ], + [ + 103.039489746000072, + 11.325317383000026 + ], + [ + 103.038696289000086, + 11.320678711000028 + ], + [ + 103.040283203000058, + 11.317321777000075 + ], + [ + 103.041870117000087, + 11.313110352000024 + ], + [ + 103.043701172000056, + 11.309509277000075 + ], + [ + 103.044128418000071, + 11.305908203000058 + ], + [ + 103.042724609000061, + 11.302490234000061 + ], + [ + 103.041870117000087, + 11.299499512000068 + ], + [ + 103.042480469000054, + 11.295471191000047 + ], + [ + 103.041076660000044, + 11.291076660000044 + ], + [ + 103.040527344000054, + 11.287902832000043 + ], + [ + 103.039123535000044, + 11.285278320000032 + ], + [ + 103.037475586000085, + 11.282287598000039 + ], + [ + 103.035705566000047, + 11.278930664000029 + ], + [ + 103.033325195000032, + 11.275329590000069 + ], + [ + 103.033874512000068, + 11.272521973000039 + ], + [ + 103.032897949000073, + 11.268676758000026 + ], + [ + 103.031311035000044, + 11.26452636700003 + ], + [ + 103.028686523000033, + 11.26007080100004 + ], + [ + 103.027282715000069, + 11.255493164000029 + ], + [ + 103.025878906000059, + 11.251708984000061 + ], + [ + 103.025329590000069, + 11.24890136700003 + ], + [ + 103.023681641000053, + 11.246520996000072 + ], + [ + 103.020874023000033, + 11.244689941000047 + ], + [ + 103.017272949000073, + 11.243530273000033 + ], + [ + 103.013488770000038, + 11.243896484000061 + ], + [ + 103.010498047000056, + 11.246093750000057 + ], + [ + 103.007324219000054, + 11.250122070000032 + ], + [ + 103.003295898000033, + 11.250122070000032 + ], + [ + 102.999694824000073, + 11.248291016000053 + ], + [ + 102.999877930000082, + 11.251525879000042 + ], + [ + 102.998107910000044, + 11.255126953000058 + ], + [ + 102.994323730000076, + 11.256530762000068 + ], + [ + 102.989501953000058, + 11.255493164000029 + ], + [ + 102.991516113000046, + 11.259887695000032 + ], + [ + 102.991271973000039, + 11.263916016000053 + ], + [ + 102.989685059000067, + 11.268920898000033 + ], + [ + 102.986511230000076, + 11.270080566000047 + ], + [ + 102.984130859000061, + 11.272094727000024 + ], + [ + 102.981689453000058, + 11.27569580100004 + ], + [ + 102.985473633000083, + 11.278076172000056 + ], + [ + 102.984497070000032, + 11.281494141000053 + ], + [ + 102.98468017600004, + 11.285522461000028 + ], + [ + 102.983886719000054, + 11.290100098000039 + ], + [ + 102.983886719000054, + 11.293518066000047 + ], + [ + 102.985290527000075, + 11.296508789000029 + ], + [ + 102.984497070000032, + 11.300109863000046 + ], + [ + 102.981689453000058, + 11.302307129000042 + ], + [ + 102.980895996000072, + 11.305480957000043 + ], + [ + 102.983276367000087, + 11.309326172000056 + ], + [ + 102.986328125000057, + 11.312683105000076 + ], + [ + 102.988281250000057, + 11.316101074000073 + ], + [ + 102.989929199000073, + 11.319274902000075 + ], + [ + 102.988708496000072, + 11.324279785000044 + ], + [ + 102.987304687000062, + 11.328674316000047 + ], + [ + 102.985900879000042, + 11.333312988000046 + ], + [ + 102.98468017600004, + 11.336730957000043 + ], + [ + 102.983520508000083, + 11.340270996000072 + ], + [ + 102.982116699000073, + 11.343872070000032 + ], + [ + 102.980712891000053, + 11.347900391000053 + ], + [ + 102.979492187000062, + 11.350708008000026 + ], + [ + 102.976928711000085, + 11.352905273000033 + ], + [ + 102.975708008000083, + 11.35772705100004 + ], + [ + 102.977905273000033, + 11.361694336000028 + ], + [ + 102.978515625000057, + 11.365905762000068 + ], + [ + 102.980102539000086, + 11.370483398000033 + ], + [ + 102.979492187000062, + 11.373718262000068 + ], + [ + 102.978271484000061, + 11.376708984000061 + ], + [ + 102.977111816000047, + 11.380493164000029 + ], + [ + 102.975891113000046, + 11.383728027000075 + ], + [ + 102.974670410000044, + 11.387329102000024 + ], + [ + 102.972106934000067, + 11.392089844000054 + ], + [ + 102.971130371000072, + 11.396118164000029 + ], + [ + 102.971130371000072, + 11.400512695000032 + ], + [ + 102.972106934000067, + 11.404479980000076 + ], + [ + 102.973510742000087, + 11.407714844000054 + ], + [ + 102.974670410000044, + 11.411682129000042 + ], + [ + 102.976684570000032, + 11.415527344000054 + ], + [ + 102.978271484000061, + 11.418701172000056 + ], + [ + 102.982116699000073, + 11.421325684000067 + ], + [ + 102.983886719000054, + 11.418518066000047 + ], + [ + 102.986694336000085, + 11.41687011700003 + ], + [ + 102.985107422000056, + 11.412719727000024 + ], + [ + 102.985290527000075, + 11.40850830100004 + ] + ] + ], + [ + [ + [ + 103.064880371000072, + 11.427307129000042 + ], + [ + 103.064514160000044, + 11.421508789000029 + ], + [ + 103.061706543000071, + 11.424072266000053 + ], + [ + 103.064880371000072, + 11.427307129000042 + ] + ] + ], + [ + [ + [ + 103.009277344000054, + 11.434875488000046 + ], + [ + 103.006530762000068, + 11.433105469000054 + ], + [ + 103.005676270000038, + 11.436096191000047 + ], + [ + 103.009277344000054, + 11.434875488000046 + ] + ] + ], + [ + [ + [ + 103.064880371000072, + 11.427307129000042 + ], + [ + 103.064880371000072, + 11.431884766000053 + ], + [ + 103.061096191000047, + 11.433105469000054 + ], + [ + 103.057922363000046, + 11.434509277000075 + ], + [ + 103.055114746000072, + 11.435119629000042 + ], + [ + 103.053894043000071, + 11.438293457000043 + ], + [ + 103.050720215000069, + 11.438720703000058 + ], + [ + 103.047302246000072, + 11.437927246000072 + ], + [ + 103.044677734000061, + 11.441528320000032 + ], + [ + 103.041870117000087, + 11.443298340000069 + ], + [ + 103.039916992000087, + 11.440673828000058 + ], + [ + 103.038513184000067, + 11.438110352000024 + ], + [ + 103.036071777000075, + 11.435119629000042 + ], + [ + 103.032287598000039, + 11.43249511700003 + ], + [ + 103.029296875000057, + 11.429687500000057 + ], + [ + 103.024291992000087, + 11.426513672000056 + ], + [ + 103.020324707000043, + 11.42468261700003 + ], + [ + 103.018676758000083, + 11.422119141000053 + ], + [ + 103.015319824000073, + 11.42272949200003 + ], + [ + 103.013122559000067, + 11.425903320000032 + ], + [ + 103.011901855000076, + 11.433105469000054 + ], + [ + 103.013671875000057, + 11.436706543000071 + ], + [ + 103.014709473000039, + 11.439880371000072 + ], + [ + 103.015075684000067, + 11.442871094000054 + ], + [ + 103.014892578000058, + 11.446105957000043 + ], + [ + 103.014282227000081, + 11.449707031000059 + ], + [ + 103.013488770000038, + 11.453674316000047 + ], + [ + 103.013671875000057, + 11.457702637000068 + ], + [ + 103.012512207000043, + 11.460327148000033 + ], + [ + 103.010925293000071, + 11.462707520000038 + ], + [ + 103.009521484000061, + 11.46569824200003 + ], + [ + 103.007690430000082, + 11.468688965000069 + ], + [ + 103.005493164000086, + 11.472717285000044 + ], + [ + 103.002929687000062, + 11.476074219000054 + ], + [ + 103.001525879000042, + 11.478698730000076 + ], + [ + 102.999694824000073, + 11.481079102000024 + ], + [ + 102.998107910000044, + 11.484924316000047 + ], + [ + 102.996093750000057, + 11.487121582000043 + ], + [ + 102.993896484000061, + 11.489929199000073 + ], + [ + 102.99249267600004, + 11.493713379000042 + ], + [ + 102.988708496000072, + 11.495300293000071 + ], + [ + 102.985717773000033, + 11.499511719000054 + ], + [ + 102.983703613000046, + 11.503906250000057 + ], + [ + 102.982910156000059, + 11.507690430000025 + ], + [ + 102.984924316000047, + 11.512695312000062 + ], + [ + 102.980529785000044, + 11.518676758000026 + ], + [ + 102.976074219000054, + 11.520690918000071 + ], + [ + 102.971496582000043, + 11.522521973000039 + ], + [ + 102.968078613000046, + 11.524902344000054 + ], + [ + 102.965515137000068, + 11.528076172000056 + ], + [ + 102.963684082000043, + 11.530517578000058 + ], + [ + 102.961730957000043, + 11.533081055000025 + ], + [ + 102.958496094000054, + 11.537109375000057 + ], + [ + 102.955688477000081, + 11.541076660000044 + ], + [ + 102.953308105000076, + 11.544494629000042 + ], + [ + 102.950927734000061, + 11.548889160000044 + ], + [ + 102.950683594000054, + 11.552490234000061 + ], + [ + 102.952880859000061, + 11.555297852000024 + ], + [ + 102.955688477000081, + 11.557922363000046 + ], + [ + 102.953491211000085, + 11.565124512000068 + ], + [ + 102.950927734000061, + 11.566894531000059 + ], + [ + 102.948730469000054, + 11.569519043000071 + ], + [ + 102.947082520000038, + 11.572509766000053 + ], + [ + 102.945495605000076, + 11.576110840000069 + ], + [ + 102.944274902000075, + 11.580322266000053 + ], + [ + 102.942687988000046, + 11.584106445000032 + ], + [ + 102.939697266000053, + 11.587707520000038 + ], + [ + 102.936096191000047, + 11.586914062000062 + ], + [ + 102.933105469000054, + 11.586303711000028 + ], + [ + 102.932312012000068, + 11.589294434000067 + ], + [ + 102.931274414000086, + 11.593078613000046 + ], + [ + 102.931091309000067, + 11.596679687000062 + ], + [ + 102.932678223000039, + 11.599670410000044 + ], + [ + 102.936096191000047, + 11.600097656000059 + ], + [ + 102.938720703000058, + 11.601928711000028 + ], + [ + 102.938110352000081, + 11.605895996000072 + ], + [ + 102.937072754000042, + 11.609497070000032 + ], + [ + 102.935729980000076, + 11.613098145000038 + ], + [ + 102.933471680000082, + 11.61749267600004 + ], + [ + 102.931091309000067, + 11.621276855000076 + ], + [ + 102.929321289000086, + 11.624877930000025 + ], + [ + 102.926879883000083, + 11.628723145000038 + ], + [ + 102.923522949000073, + 11.631103516000053 + ], + [ + 102.919677734000061, + 11.630126953000058 + ], + [ + 102.91827392600004, + 11.634521484000061 + ], + [ + 102.916870117000087, + 11.637695312000062 + ], + [ + 102.914672852000081, + 11.641906738000046 + ], + [ + 102.912109375000057, + 11.645874023000033 + ], + [ + 102.911315918000071, + 11.649108887000068 + ], + [ + 102.914489746000072, + 11.652282715000069 + ], + [ + 102.913879395000038, + 11.656677246000072 + ], + [ + 102.913085937000062, + 11.659484863000046 + ], + [ + 102.913085937000062, + 11.663879395000038 + ], + [ + 102.913696289000086, + 11.667907715000069 + ], + [ + 102.913085937000062, + 11.671875 + ], + [ + 102.913330078000058, + 11.675292969000054 + ], + [ + 102.911926270000038, + 11.679077148000033 + ], + [ + 102.911315918000071, + 11.683105469000054 + ], + [ + 102.911682129000042, + 11.687683105000076 + ], + [ + 102.911682129000042, + 11.692504883000026 + ], + [ + 102.912292480000076, + 11.696716309000067 + ], + [ + 102.912109375000057, + 11.701110840000069 + ], + [ + 102.911499023000033, + 11.705688477000024 + ], + [ + 102.911315918000071, + 11.710327148000033 + ], + [ + 102.911071777000075, + 11.713317871000072 + ], + [ + 102.910705566000047, + 11.71710205100004 + ], + [ + 102.910705566000047, + 11.721313477000024 + ], + [ + 102.911071777000075, + 11.725524902000075 + ], + [ + 102.911315918000071, + 11.730529785000044 + ], + [ + 102.910888672000056, + 11.73468017600004 + ], + [ + 102.910705566000047, + 11.739685059000067 + ], + [ + 102.911071777000075, + 11.743530273000033 + ], + [ + 102.910522461000085, + 11.747680664000029 + ], + [ + 102.908691406000059, + 11.751525879000042 + ], + [ + 102.907897949000073, + 11.756103516000053 + ], + [ + 102.906921387000068, + 11.759277344000054 + ], + [ + 102.906127930000082, + 11.763305664000029 + ], + [ + 102.904907227000081, + 11.767517090000069 + ], + [ + 102.902709961000085, + 11.771911621000072 + ], + [ + 102.899291992000087, + 11.775878906000059 + ], + [ + 102.896911621000072, + 11.778930664000029 + ], + [ + 102.894287109000061, + 11.782897949000073 + ], + [ + 102.892517090000069, + 11.786926270000038 + ], + [ + 102.888305664000086, + 11.789123535000044 + ], + [ + 102.882690430000082, + 11.790527344000054 + ], + [ + 102.882324219000054, + 11.794128418000071 + ], + [ + 102.883911133000083, + 11.796508789000029 + ], + [ + 102.884887695000032, + 11.79968261700003 + ], + [ + 102.881286621000072, + 11.800476074000073 + ], + [ + 102.878479004000042, + 11.802124023000033 + ], + [ + 102.874328613000046, + 11.803527832000043 + ], + [ + 102.868713379000042, + 11.805114746000072 + ], + [ + 102.866516113000046, + 11.806884766000053 + ], + [ + 102.864501953000058, + 11.810302734000061 + ], + [ + 102.863525391000053, + 11.813903809000067 + ], + [ + 102.863708496000072, + 11.817077637000068 + ], + [ + 102.862670898000033, + 11.821105957000043 + ], + [ + 102.861328125000057, + 11.825317383000026 + ], + [ + 102.856689453000058, + 11.826110840000069 + ], + [ + 102.853698730000076, + 11.826293945000032 + ], + [ + 102.851318359000061, + 11.829895020000038 + ], + [ + 102.848876953000058, + 11.833129883000026 + ], + [ + 102.847717285000044, + 11.836120605000076 + ], + [ + 102.846679687000062, + 11.839904785000044 + ], + [ + 102.845275879000042, + 11.844482422000056 + ], + [ + 102.84210205100004, + 11.847717285000044 + ], + [ + 102.839477539000086, + 11.849670410000044 + ], + [ + 102.836120605000076, + 11.852722168000071 + ], + [ + 102.833496094000054, + 11.856872559000067 + ], + [ + 102.832275391000053, + 11.85968017600004 + ], + [ + 102.830688477000081, + 11.863525391000053 + ], + [ + 102.829101562000062, + 11.867309570000032 + ], + [ + 102.827087402000075, + 11.871520996000072 + ], + [ + 102.824707031000059, + 11.876708984000061 + ], + [ + 102.823486328000058, + 11.88171386700003 + ], + [ + 102.822082520000038, + 11.885498047000056 + ], + [ + 102.821105957000043, + 11.889709473000039 + ], + [ + 102.819885254000042, + 11.893127441000047 + ], + [ + 102.820922852000081, + 11.896911621000072 + ], + [ + 102.821105957000043, + 11.901916504000042 + ], + [ + 102.822082520000038, + 11.906677246000072 + ], + [ + 102.820922852000081, + 11.910095215000069 + ], + [ + 102.819091797000056, + 11.912719727000024 + ], + [ + 102.819702148000033, + 11.91632080100004 + ], + [ + 102.816894531000059, + 11.918884277000075 + ], + [ + 102.814086914000086, + 11.922485352000024 + ], + [ + 102.813476562000062, + 11.92608642600004 + ], + [ + 102.814880371000072, + 11.929077148000033 + ], + [ + 102.816101074000073, + 11.93249511700003 + ], + [ + 102.815307617000087, + 11.935485840000069 + ], + [ + 102.813476562000062, + 11.937927246000072 + ], + [ + 102.811706543000071, + 11.941528320000032 + ], + [ + 102.809509277000075, + 11.945129395000038 + ], + [ + 102.806884766000053, + 11.946472168000071 + ], + [ + 102.803710937000062, + 11.947692871000072 + ], + [ + 102.80108642600004, + 11.948913574000073 + ], + [ + 102.799499512000068, + 11.952087402000075 + ], + [ + 102.797119141000053, + 11.956481934000067 + ], + [ + 102.796875, + 11.961120605000076 + ], + [ + 102.795715332000043, + 11.964294434000067 + ], + [ + 102.794494629000042, + 11.968322754000042 + ], + [ + 102.79327392600004, + 11.972106934000067 + ], + [ + 102.79132080100004, + 11.976318359000061 + ], + [ + 102.784729004000042, + 11.977905273000033 + ], + [ + 102.78350830100004, + 11.981506348000039 + ], + [ + 102.782104492000087, + 11.985717773000033 + ], + [ + 102.780517578000058, + 11.989929199000073 + ], + [ + 102.780090332000043, + 11.994689941000047 + ], + [ + 102.778686523000033, + 11.998718262000068 + ], + [ + 102.777282715000069, + 12.002929687000062 + ], + [ + 102.776672363000046, + 12.006286621000072 + ], + [ + 102.776489258000083, + 12.009887695000032 + ], + [ + 102.776489258000083, + 12.013916016000053 + ], + [ + 102.778686523000033, + 12.019897461000028 + ], + [ + 102.779724121000072, + 12.023071289000029 + ], + [ + 102.797729492000087, + 12.013488770000038 + ], + [ + 102.972717285000044, + 12.002319336000028 + ], + [ + 102.996276855000076, + 11.996887207000043 + ], + [ + 103.003723145000038, + 11.994079590000069 + ], + [ + 103.01007080100004, + 11.991699219000054 + ], + [ + 103.018676758000083, + 11.988708496000072 + ], + [ + 103.027893066000047, + 11.98468017600004 + ], + [ + 103.037475586000085, + 11.980712891000053 + ], + [ + 103.048522949000073, + 11.975280762000068 + ], + [ + 103.05889892600004, + 11.970703125000057 + ], + [ + 103.065673828000058, + 11.968078613000046 + ], + [ + 103.072326660000044, + 11.965087891000053 + ], + [ + 103.078308105000076, + 11.962280273000033 + ], + [ + 103.086914062000062, + 11.959472656000059 + ], + [ + 103.09210205100004, + 11.956909180000025 + ], + [ + 103.097106934000067, + 11.954284668000071 + ], + [ + 103.101318359000061, + 11.952270508000026 + ], + [ + 103.104492187000062, + 11.950927734000061 + ], + [ + 103.108703613000046, + 11.949096680000025 + ], + [ + 103.111877441000047, + 11.947875977000024 + ], + [ + 103.115722656000059, + 11.946716309000067 + ], + [ + 103.119873047000056, + 11.945678711000028 + ], + [ + 103.123474121000072, + 11.945312500000057 + ], + [ + 103.128479004000042, + 11.945129395000038 + ], + [ + 103.132080078000058, + 11.944885254000042 + ], + [ + 103.135498047000056, + 11.944519043000071 + ], + [ + 103.140075684000067, + 11.944274902000075 + ], + [ + 103.143493652000075, + 11.944885254000042 + ], + [ + 103.147705078000058, + 11.946716309000067 + ], + [ + 103.152526855000076, + 11.947875977000024 + ], + [ + 103.156311035000044, + 11.946899414000029 + ], + [ + 103.159729004000042, + 11.944274902000075 + ], + [ + 103.162292480000076, + 11.945495605000076 + ], + [ + 103.166503906000059, + 11.945678711000028 + ], + [ + 103.171325684000067, + 11.949707031000059 + ], + [ + 103.174316406000059, + 11.948730469000054 + ], + [ + 103.177673340000069, + 11.949707031000059 + ], + [ + 103.185119629000042, + 11.952514648000033 + ], + [ + 103.194274902000075, + 11.962097168000071 + ], + [ + 103.198730469000054, + 11.963500977000024 + ], + [ + 103.207702637000068, + 11.962707520000038 + ], + [ + 103.212280273000033, + 11.961120605000076 + ], + [ + 103.219299316000047, + 11.960327148000033 + ], + [ + 103.223083496000072, + 11.956909180000025 + ], + [ + 103.226318359000061, + 11.958496094000054 + ], + [ + 103.229492187000062, + 11.963073730000076 + ], + [ + 103.228515625000057, + 11.968872070000032 + ], + [ + 103.231323242000087, + 11.975891113000046 + ], + [ + 103.235290527000075, + 11.976684570000032 + ], + [ + 103.241271973000039, + 11.975524902000075 + ], + [ + 103.244689941000047, + 11.976684570000032 + ], + [ + 103.246520996000072, + 11.974487305000025 + ], + [ + 103.252502441000047, + 11.973876953000058 + ], + [ + 103.257080078000058, + 11.978088379000042 + ], + [ + 103.257873535000044, + 11.982910156000059 + ], + [ + 103.263305664000086, + 11.984130859000061 + ], + [ + 103.268127441000047, + 11.988525391000053 + ], + [ + 103.273071289000086, + 11.988525391000053 + ], + [ + 103.276489258000083, + 11.986877441000047 + ], + [ + 103.280700684000067, + 11.985290527000075 + ], + [ + 103.285278320000032, + 11.98327636700003 + ], + [ + 103.289306641000053, + 11.980529785000044 + ], + [ + 103.294128418000071, + 11.981689453000058 + ], + [ + 103.297729492000087, + 11.985290527000075 + ], + [ + 103.302673340000069, + 11.985290527000075 + ], + [ + 103.307312012000068, + 11.985290527000075 + ], + [ + 103.311279297000056, + 11.985900879000042 + ], + [ + 103.313903809000067, + 11.989501953000058 + ], + [ + 103.316101074000073, + 11.993530273000033 + ], + [ + 103.316528320000032, + 11.996704102000024 + ], + [ + 103.317871094000054, + 12.001281738000046 + ], + [ + 103.319274902000075, + 12.005126953000058 + ], + [ + 103.319519043000071, + 12.008728027000075 + ], + [ + 103.323303223000039, + 12.011108398000033 + ], + [ + 103.326721191000047, + 12.014099121000072 + ], + [ + 103.328918457000043, + 12.016906738000046 + ], + [ + 103.331909180000082, + 12.019104004000042 + ], + [ + 103.337097168000071, + 12.019897461000028 + ], + [ + 103.341308594000054, + 12.022277832000043 + ], + [ + 103.344909668000071, + 12.025085449000073 + ], + [ + 103.346679687000062, + 12.027526855000076 + ], + [ + 103.350524902000075, + 12.027709961000028 + ], + [ + 103.354675293000071, + 12.029113770000038 + ], + [ + 103.359497070000032, + 12.028930664000029 + ], + [ + 103.362670898000033, + 12.030517578000058 + ], + [ + 103.363281250000057, + 12.03350830100004 + ], + [ + 103.362487793000071, + 12.036926270000038 + ], + [ + 103.361328125000057, + 12.040893555000025 + ], + [ + 103.361083984000061, + 12.044311523000033 + ], + [ + 103.361328125000057, + 12.04772949200003 + ], + [ + 103.361877441000047, + 12.052124023000033 + ], + [ + 103.363891602000081, + 12.055725098000039 + ], + [ + 103.364318848000039, + 12.059692383000026 + ], + [ + 103.366699219000054, + 12.062072754000042 + ], + [ + 103.371276855000076, + 12.066284180000025 + ], + [ + 103.374084473000039, + 12.069885254000042 + ], + [ + 103.377929687000062, + 12.071472168000071 + ], + [ + 103.381103516000053, + 12.071105957000043 + ], + [ + 103.384887695000032, + 12.070495605000076 + ], + [ + 103.386474609000061, + 12.073486328000058 + ], + [ + 103.382690430000082, + 12.076293945000032 + ], + [ + 103.384887695000032, + 12.081481934000067 + ], + [ + 103.382324219000054, + 12.085083008000026 + ], + [ + 103.380920410000044, + 12.089111328000058 + ], + [ + 103.383911133000083, + 12.092529297000056 + ], + [ + 103.382080078000058, + 12.095886230000076 + ], + [ + 103.389099121000072, + 12.103271484000061 + ], + [ + 103.391723633000083, + 12.107299805000025 + ], + [ + 103.395324707000043, + 12.108886719000054 + ], + [ + 103.398925781000059, + 12.109130859000061 + ], + [ + 103.401672363000046, + 12.107482910000044 + ], + [ + 103.403320312000062, + 12.104125977000024 + ], + [ + 103.406921387000068, + 12.103271484000061 + ], + [ + 103.411071777000075, + 12.102478027000075 + ], + [ + 103.413696289000086, + 12.09991455100004 + ], + [ + 103.415710449000073, + 12.096496582000043 + ], + [ + 103.419677734000061, + 12.095520020000038 + ], + [ + 103.422485352000081, + 12.09210205100004 + ], + [ + 103.426879883000083, + 12.091125488000046 + ], + [ + 103.429504395000038, + 12.089721680000025 + ], + [ + 103.432495117000087, + 12.087280273000033 + ], + [ + 103.435913086000085, + 12.089111328000058 + ], + [ + 103.440124512000068, + 12.091918945000032 + ], + [ + 103.443481445000032, + 12.092712402000075 + ], + [ + 103.447326660000044, + 12.093872070000032 + ], + [ + 103.451110840000069, + 12.095886230000076 + ], + [ + 103.455505371000072, + 12.099670410000044 + ], + [ + 103.458923340000069, + 12.101501465000069 + ], + [ + 103.460876465000069, + 12.104675293000071 + ], + [ + 103.464111328000058, + 12.10827636700003 + ], + [ + 103.466918945000032, + 12.111328125000057 + ], + [ + 103.468505859000061, + 12.114685059000067 + ], + [ + 103.471496582000043, + 12.11608886700003 + ], + [ + 103.475524902000075, + 12.115722656000059 + ], + [ + 103.477905273000033, + 12.113708496000072 + ], + [ + 103.480529785000044, + 12.111328125000057 + ], + [ + 103.482910156000059, + 12.108520508000026 + ], + [ + 103.486511230000076, + 12.106079102000024 + ], + [ + 103.487915039000086, + 12.102478027000075 + ], + [ + 103.489685059000067, + 12.099670410000044 + ], + [ + 103.493286133000083, + 12.100097656000059 + ], + [ + 103.497497559000067, + 12.101928711000028 + ], + [ + 103.501892090000069, + 12.103881836000028 + ], + [ + 103.505126953000058, + 12.105102539000029 + ], + [ + 103.508728027000075, + 12.105895996000072 + ], + [ + 103.512512207000043, + 12.104919434000067 + ], + [ + 103.515319824000073, + 12.103515625000057 + ], + [ + 103.518127441000047, + 12.102111816000047 + ], + [ + 103.520690918000071, + 12.100524902000075 + ], + [ + 103.523071289000086, + 12.097717285000044 + ], + [ + 103.526123047000056, + 12.097900391000053 + ], + [ + 103.530273437000062, + 12.09851074200003 + ], + [ + 103.534484863000046, + 12.096496582000043 + ], + [ + 103.537902832000043, + 12.094909668000071 + ], + [ + 103.540283203000058, + 12.091308594000054 + ], + [ + 103.537719727000081, + 12.088317871000072 + ], + [ + 103.536499023000033, + 12.085693359000061 + ], + [ + 103.538513184000067, + 12.083496094000054 + ], + [ + 103.542297363000046, + 12.081481934000067 + ], + [ + 103.546691895000038, + 12.078918457000043 + ], + [ + 103.548889160000044, + 12.076110840000069 + ], + [ + 103.551696777000075, + 12.07452392600004 + ], + [ + 103.554687500000057, + 12.073486328000058 + ], + [ + 103.557678223000039, + 12.072326660000044 + ], + [ + 103.560485840000069, + 12.069702148000033 + ], + [ + 103.563293457000043, + 12.066284180000025 + ], + [ + 103.566894531000059, + 12.06671142600004 + ], + [ + 103.569274902000075, + 12.064697266000053 + ], + [ + 103.570312500000057, + 12.060302734000061 + ], + [ + 103.572692871000072, + 12.056884766000053 + ], + [ + 103.57647705100004, + 12.055908203000058 + ], + [ + 103.580322266000053, + 12.054077148000033 + ], + [ + 103.584106445000032, + 12.053100586000028 + ], + [ + 103.585693359000061, + 12.050109863000046 + ], + [ + 103.587097168000071, + 12.047119141000053 + ], + [ + 103.588684082000043, + 12.044311523000033 + ], + [ + 103.590881348000039, + 12.041076660000044 + ], + [ + 103.595275879000042, + 12.038696289000029 + ], + [ + 103.597473145000038, + 12.035522461000028 + ], + [ + 103.600708008000083, + 12.033325195000032 + ], + [ + 103.602294922000056, + 12.028686523000033 + ], + [ + 103.604492187000062, + 12.02569580100004 + ], + [ + 103.606689453000058, + 12.023498535000044 + ], + [ + 103.609130859000061, + 12.021484375000057 + ], + [ + 103.612487793000071, + 12.019470215000069 + ], + [ + 103.617309570000032, + 12.018920898000033 + ], + [ + 103.621887207000043, + 12.017700195000032 + ], + [ + 103.62530517600004, + 12.016296387000068 + ], + [ + 103.628906250000057, + 12.01593017600004 + ], + [ + 103.632873535000044, + 12.014282227000024 + ], + [ + 103.63507080100004, + 12.011291504000042 + ], + [ + 103.636901855000076, + 12.007324219000054 + ], + [ + 103.636108398000033, + 12.002929687000062 + ], + [ + 103.632690430000082, + 11.99890136700003 + ], + [ + 103.628906250000057, + 11.995483398000033 + ], + [ + 103.630920410000044, + 11.993103027000075 + ], + [ + 103.633483887000068, + 11.991882324000073 + ], + [ + 103.635681152000075, + 11.987915039000029 + ], + [ + 103.638122559000067, + 11.985290527000075 + ], + [ + 103.641113281000059, + 11.985473633000026 + ], + [ + 103.643920898000033, + 11.986083984000061 + ], + [ + 103.647277832000043, + 11.98468017600004 + ], + [ + 103.649902344000054, + 11.983520508000026 + ], + [ + 103.649902344000054, + 11.980529785000044 + ], + [ + 103.652282715000069, + 11.978881836000028 + ], + [ + 103.655273437000062, + 11.975524902000075 + ], + [ + 103.659301758000083, + 11.974670410000044 + ], + [ + 103.663330078000058, + 11.973693848000039 + ], + [ + 103.666687012000068, + 11.972106934000067 + ], + [ + 103.669677734000061, + 11.970092773000033 + ], + [ + 103.672912598000039, + 11.967285156000059 + ], + [ + 103.676513672000056, + 11.96569824200003 + ], + [ + 103.680480957000043, + 11.965270996000072 + ], + [ + 103.684326172000056, + 11.964904785000044 + ], + [ + 103.687927246000072, + 11.964477539000029 + ], + [ + 103.690917969000054, + 11.964904785000044 + ], + [ + 103.695495605000076, + 11.964294434000067 + ], + [ + 103.698486328000058, + 11.959899902000075 + ], + [ + 103.69952392600004, + 11.956726074000073 + ], + [ + 103.699890137000068, + 11.952514648000033 + ], + [ + 103.700317383000083, + 11.947875977000024 + ], + [ + 103.698120117000087, + 11.944702148000033 + ], + [ + 103.695678711000085, + 11.941101074000073 + ], + [ + 103.699890137000068, + 11.938720703000058 + ], + [ + 103.704528809000067, + 11.938110352000024 + ], + [ + 103.709106445000032, + 11.935485840000069 + ], + [ + 103.711486816000047, + 11.930908203000058 + ], + [ + 103.714721680000082, + 11.929077148000033 + ], + [ + 103.718688965000069, + 11.927673340000069 + ], + [ + 103.722473145000038, + 11.928100586000028 + ], + [ + 103.725097656000059, + 11.930114746000072 + ], + [ + 103.728515625000057, + 11.933288574000073 + ], + [ + 103.731872559000067, + 11.935302734000061 + ], + [ + 103.735473633000083, + 11.937072754000042 + ], + [ + 103.739074707000043, + 11.939086914000029 + ], + [ + 103.742675781000059, + 11.939270020000038 + ], + [ + 103.745727539000086, + 11.935729980000076 + ], + [ + 103.748474121000072, + 11.932312012000068 + ], + [ + 103.752075195000032, + 11.930114746000072 + ], + [ + 103.755676270000038, + 11.927124023000033 + ], + [ + 103.758728027000075, + 11.92608642600004 + ], + [ + 103.762084961000085, + 11.925476074000073 + ], + [ + 103.764892578000058, + 11.926513672000056 + ], + [ + 103.767272949000073, + 11.929077148000033 + ], + [ + 103.769104004000042, + 11.931884766000053 + ], + [ + 103.772521973000039, + 11.933288574000073 + ], + [ + 103.776306152000075, + 11.931701660000044 + ], + [ + 103.779907227000081, + 11.931884766000053 + ], + [ + 103.783325195000032, + 11.93249511700003 + ], + [ + 103.787475586000085, + 11.932128906000059 + ], + [ + 103.790893555000082, + 11.929321289000029 + ], + [ + 103.793701172000056, + 11.926696777000075 + ], + [ + 103.796508789000086, + 11.923706055000025 + ], + [ + 103.798278809000067, + 11.920288086000028 + ], + [ + 103.798278809000067, + 11.916076660000044 + ], + [ + 103.800720215000069, + 11.911682129000042 + ], + [ + 103.804077148000033, + 11.90850830100004 + ], + [ + 103.807678223000039, + 11.908081055000025 + ], + [ + 103.814270020000038, + 11.900512695000032 + ], + [ + 103.815307617000087, + 11.895690918000071 + ], + [ + 103.819091797000056, + 11.892517090000069 + ], + [ + 103.822326660000044, + 11.888305664000029 + ], + [ + 103.824707031000059, + 11.886291504000042 + ], + [ + 103.830871582000043, + 11.879882812000062 + ], + [ + 103.833312988000046, + 11.875488281000059 + ], + [ + 103.835876465000069, + 11.871093750000057 + ], + [ + 103.838317871000072, + 11.866699219000054 + ], + [ + 103.838317871000072, + 11.861511230000076 + ], + [ + 103.840515137000068, + 11.857482910000044 + ], + [ + 103.843322754000042, + 11.854125977000024 + ], + [ + 103.846923828000058, + 11.853698730000076 + ], + [ + 103.850280762000068, + 11.851318359000061 + ], + [ + 103.852722168000071, + 11.849487305000025 + ], + [ + 103.854675293000071, + 11.847290039000029 + ], + [ + 103.856872559000067, + 11.843505859000061 + ], + [ + 103.851684570000032, + 11.842529297000056 + ], + [ + 103.848693848000039, + 11.841674805000025 + ], + [ + 103.845703125000057, + 11.840270996000072 + ], + [ + 103.842895508000083, + 11.838928223000039 + ], + [ + 103.840270996000072, + 11.836914062000062 + ], + [ + 103.836303711000085, + 11.836730957000043 + ], + [ + 103.830688477000081, + 11.835693359000061 + ], + [ + 103.827697754000042, + 11.836120605000076 + ], + [ + 103.824707031000059, + 11.837280273000033 + ], + [ + 103.821289062000062, + 11.838684082000043 + ], + [ + 103.817321777000075, + 11.838928223000039 + ], + [ + 103.813293457000043, + 11.839477539000029 + ], + [ + 103.807922363000046, + 11.840270996000072 + ], + [ + 103.804504395000038, + 11.84210205100004 + ], + [ + 103.801330566000047, + 11.844116211000028 + ], + [ + 103.796325684000067, + 11.845886230000076 + ], + [ + 103.791870117000087, + 11.847900391000053 + ], + [ + 103.788696289000086, + 11.850280762000068 + ], + [ + 103.784729004000042, + 11.849487305000025 + ], + [ + 103.785095215000069, + 11.845275879000042 + ], + [ + 103.78350830100004, + 11.841308594000054 + ], + [ + 103.781677246000072, + 11.836730957000043 + ], + [ + 103.781311035000044, + 11.832092285000044 + ], + [ + 103.782470703000058, + 11.826904297000056 + ], + [ + 103.783081055000082, + 11.821472168000071 + ], + [ + 103.783325195000032, + 11.816284180000025 + ], + [ + 103.783874512000068, + 11.812072754000042 + ], + [ + 103.784301758000083, + 11.808715820000032 + ], + [ + 103.786499023000033, + 11.806518555000025 + ], + [ + 103.790710449000073, + 11.804687500000057 + ], + [ + 103.79327392600004, + 11.80108642600004 + ], + [ + 103.792907715000069, + 11.795898437000062 + ], + [ + 103.792907715000069, + 11.790710449000073 + ], + [ + 103.792114258000083, + 11.787109375000057 + ], + [ + 103.788879395000038, + 11.784729004000042 + ], + [ + 103.777526855000076, + 11.778076172000056 + ], + [ + 103.774719238000046, + 11.77569580100004 + ], + [ + 103.773498535000044, + 11.772888184000067 + ], + [ + 103.773681641000053, + 11.768676758000026 + ], + [ + 103.775512695000032, + 11.765686035000044 + ], + [ + 103.776123047000056, + 11.762329102000024 + ], + [ + 103.778686523000033, + 11.758483887000068 + ], + [ + 103.781311035000044, + 11.755126953000058 + ], + [ + 103.782897949000073, + 11.751708984000061 + ], + [ + 103.782470703000058, + 11.747924805000025 + ], + [ + 103.780517578000058, + 11.743896484000061 + ], + [ + 103.778320312000062, + 11.74108886700003 + ], + [ + 103.775878906000059, + 11.738098145000038 + ], + [ + 103.775329590000069, + 11.73327636700003 + ], + [ + 103.774475098000039, + 11.729919434000067 + ], + [ + 103.774108887000068, + 11.725708008000026 + ], + [ + 103.773925781000059, + 11.720886230000076 + ], + [ + 103.774719238000046, + 11.717285156000059 + ], + [ + 103.775329590000069, + 11.713684082000043 + ], + [ + 103.776123047000056, + 11.710876465000069 + ], + [ + 103.778076172000056, + 11.708129883000026 + ], + [ + 103.780273437000062, + 11.704895020000038 + ], + [ + 103.783081055000082, + 11.701721191000047 + ], + [ + 103.786071777000075, + 11.699279785000044 + ], + [ + 103.789916992000087, + 11.696899414000029 + ], + [ + 103.792724609000061, + 11.693908691000047 + ], + [ + 103.794921875000057, + 11.691894531000059 + ], + [ + 103.797302246000072, + 11.689086914000029 + ], + [ + 103.799316406000059, + 11.686523437000062 + ], + [ + 103.800720215000069, + 11.683715820000032 + ], + [ + 103.80108642600004, + 11.680480957000043 + ], + [ + 103.802124023000033, + 11.677490234000061 + ], + [ + 103.802490234000061, + 11.673522949000073 + ], + [ + 103.802490234000061, + 11.669677734000061 + ], + [ + 103.803100586000085, + 11.66687011700003 + ], + [ + 103.802307129000042, + 11.664123535000044 + ], + [ + 103.800903320000032, + 11.660705566000047 + ], + [ + 103.798706055000082, + 11.657287598000039 + ], + [ + 103.797302246000072, + 11.654724121000072 + ], + [ + 103.796508789000086, + 11.651123047000056 + ], + [ + 103.796325684000067, + 11.648071289000029 + ], + [ + 103.795715332000043, + 11.643920898000033 + ], + [ + 103.795288086000085, + 11.638305664000029 + ], + [ + 103.796081543000071, + 11.633728027000075 + ], + [ + 103.795715332000043, + 11.629699707000043 + ], + [ + 103.795288086000085, + 11.624511719000054 + ], + [ + 103.797912598000039, + 11.622314453000058 + ], + [ + 103.802124023000033, + 11.622314453000058 + ], + [ + 103.806091309000067, + 11.622314453000058 + ], + [ + 103.809082031000059, + 11.621704102000024 + ], + [ + 103.813293457000043, + 11.620117187000062 + ], + [ + 103.818908691000047, + 11.618103027000075 + ], + [ + 103.821289062000062, + 11.615722656000059 + ], + [ + 103.823913574000073, + 11.613708496000072 + ], + [ + 103.826110840000069, + 11.611083984000061 + ], + [ + 103.828491211000085, + 11.609313965000069 + ], + [ + 103.832702637000068, + 11.607482910000044 + ], + [ + 103.833679199000073, + 11.604492187000062 + ], + [ + 103.835693359000061, + 11.601074219000054 + ], + [ + 103.838684082000043, + 11.596130371000072 + ], + [ + 103.842529297000056, + 11.594116211000028 + ], + [ + 103.844482422000056, + 11.591308594000054 + ], + [ + 103.847473145000038, + 11.590270996000072 + ], + [ + 103.852111816000047, + 11.588684082000043 + ], + [ + 103.855529785000044, + 11.585510254000042 + ], + [ + 103.858520508000083, + 11.583923340000069 + ], + [ + 103.860900879000042, + 11.581115723000039 + ], + [ + 103.863281250000057, + 11.578918457000043 + ], + [ + 103.861877441000047, + 11.57452392600004 + ], + [ + 103.864501953000058, + 11.573303223000039 + ], + [ + 103.86749267600004, + 11.571105957000043 + ], + [ + 103.871093750000057, + 11.569274902000075 + ], + [ + 103.873901367000087, + 11.567687988000046 + ], + [ + 103.877319336000085, + 11.56671142600004 + ], + [ + 103.881713867000087, + 11.567077637000068 + ], + [ + 103.884277344000054, + 11.564514160000044 + ], + [ + 103.886108398000033, + 11.561279297000056 + ], + [ + 103.887695312000062, + 11.558715820000032 + ], + [ + 103.890686035000044, + 11.557678223000039 + ], + [ + 103.893676758000083, + 11.55749511700003 + ], + [ + 103.897277832000043, + 11.557128906000059 + ], + [ + 103.901489258000083, + 11.556701660000044 + ], + [ + 103.904907227000081, + 11.556091309000067 + ], + [ + 103.907714844000054, + 11.554870605000076 + ], + [ + 103.910705566000047, + 11.553710937000062 + ], + [ + 103.913696289000086, + 11.551513672000056 + ], + [ + 103.915710449000073, + 11.548522949000073 + ], + [ + 103.916687012000068, + 11.544494629000042 + ], + [ + 103.917114258000083, + 11.541076660000044 + ], + [ + 103.917724609000061, + 11.537109375000057 + ], + [ + 103.921691895000038, + 11.535278320000032 + ], + [ + 103.925292969000054, + 11.535888672000056 + ], + [ + 103.928894043000071, + 11.532897949000073 + ], + [ + 103.930725098000039, + 11.528503418000071 + ], + [ + 103.931701660000044, + 11.524902344000054 + ], + [ + 103.933471680000082, + 11.521301270000038 + ], + [ + 103.9375, + 11.517089844000054 + ], + [ + 103.941894531000059, + 11.516296387000068 + ], + [ + 103.945678711000085, + 11.516906738000046 + ], + [ + 103.949890137000068, + 11.518310547000056 + ], + [ + 103.953491211000085, + 11.518676758000026 + ], + [ + 103.958129883000083, + 11.517272949000073 + ], + [ + 103.962524414000086, + 11.520324707000043 + ], + [ + 103.965881348000039, + 11.522277832000043 + ], + [ + 103.969116211000085, + 11.524475098000039 + ], + [ + 103.972717285000044, + 11.525085449000073 + ], + [ + 103.975708008000083, + 11.526489258000026 + ], + [ + 103.979125977000081, + 11.526672363000046 + ], + [ + 103.982116699000073, + 11.523925781000059 + ], + [ + 103.985900879000042, + 11.524902344000054 + ], + [ + 103.988708496000072, + 11.526489258000026 + ], + [ + 103.992919922000056, + 11.528076172000056 + ], + [ + 103.996704102000081, + 11.530090332000043 + ], + [ + 104.001708984000061, + 11.529907227000024 + ], + [ + 104.006530762000068, + 11.526123047000056 + ], + [ + 104.008728027000075, + 11.524108887000068 + ], + [ + 104.011718750000057, + 11.521911621000072 + ], + [ + 104.014526367000087, + 11.519897461000028 + ], + [ + 104.017272949000073, + 11.516723633000026 + ], + [ + 104.020324707000043, + 11.512329102000024 + ], + [ + 104.021484375000057, + 11.509521484000061 + ], + [ + 104.023681641000053, + 11.505920410000044 + ], + [ + 104.025329590000069, + 11.501525879000042 + ], + [ + 104.028686523000033, + 11.500488281000059 + ], + [ + 104.031921387000068, + 11.499511719000054 + ], + [ + 104.035522461000085, + 11.496704102000024 + ], + [ + 104.039916992000087, + 11.494873047000056 + ], + [ + 104.043701172000056, + 11.496520996000072 + ], + [ + 104.046508789000086, + 11.497924805000025 + ], + [ + 104.049926758000083, + 11.497070312000062 + ], + [ + 104.054321289000086, + 11.495117187000062 + ], + [ + 104.056518555000082, + 11.489929199000073 + ], + [ + 104.058471680000082, + 11.485473633000026 + ], + [ + 104.060119629000042, + 11.480712891000053 + ], + [ + 104.061279297000056, + 11.476318359000061 + ], + [ + 104.062927246000072, + 11.471496582000043 + ], + [ + 104.063720703000058, + 11.466674805000025 + ], + [ + 104.064514160000044, + 11.462097168000071 + ], + [ + 104.064270020000038, + 11.457519531000059 + ], + [ + 104.061279297000056, + 11.454101562000062 + ], + [ + 104.056884766000053, + 11.452880859000061 + ], + [ + 104.051879883000083, + 11.450927734000061 + ], + [ + 104.048889160000044, + 11.448913574000073 + ], + [ + 104.047729492000087, + 11.445129395000038 + ], + [ + 104.047302246000072, + 11.441894531000059 + ], + [ + 104.044677734000061, + 11.438903809000067 + ], + [ + 104.041870117000087, + 11.435913086000028 + ], + [ + 104.038085937000062, + 11.433715820000032 + ], + [ + 104.032714844000054, + 11.430114746000072 + ], + [ + 104.027526855000076, + 11.426330566000047 + ], + [ + 104.022705078000058, + 11.422485352000024 + ], + [ + 104.018493652000075, + 11.419677734000061 + ], + [ + 104.014526367000087, + 11.417297363000046 + ], + [ + 104.011108398000033, + 11.41491699200003 + ], + [ + 104.007690430000082, + 11.412475586000028 + ], + [ + 104.004089355000076, + 11.409912109000061 + ], + [ + 104.000488281000059, + 11.40710449200003 + ], + [ + 103.996704102000081, + 11.404724121000072 + ], + [ + 103.992919922000056, + 11.402893066000047 + ], + [ + 103.989929199000073, + 11.401306152000075 + ], + [ + 103.987121582000043, + 11.39929199200003 + ], + [ + 103.984497070000032, + 11.396911621000072 + ], + [ + 103.982116699000073, + 11.394287109000061 + ], + [ + 103.978698730000076, + 11.391723633000026 + ], + [ + 103.975891113000046, + 11.388916016000053 + ], + [ + 103.972290039000086, + 11.384887695000032 + ], + [ + 103.969116211000085, + 11.380676270000038 + ], + [ + 103.966308594000054, + 11.376708984000061 + ], + [ + 103.963317871000072, + 11.373107910000044 + ], + [ + 103.961120605000076, + 11.370483398000033 + ], + [ + 103.956909180000082, + 11.365112305000025 + ], + [ + 103.952697754000042, + 11.358520508000026 + ], + [ + 103.949096680000082, + 11.354125977000024 + ], + [ + 103.945312500000057, + 11.349670410000044 + ], + [ + 103.941284180000082, + 11.345092773000033 + ], + [ + 103.936706543000071, + 11.339721680000025 + ], + [ + 103.932678223000039, + 11.335327148000033 + ], + [ + 103.928527832000043, + 11.331115723000039 + ], + [ + 103.925292969000054, + 11.326904297000056 + ], + [ + 103.922485352000081, + 11.323913574000073 + ], + [ + 103.920898437000062, + 11.321105957000043 + ], + [ + 103.91632080100004, + 11.317504883000026 + ], + [ + 103.912292480000076, + 11.313110352000024 + ], + [ + 103.909118652000075, + 11.309509277000075 + ], + [ + 103.906677246000072, + 11.306518555000025 + ], + [ + 103.904479980000076, + 11.303710937000062 + ], + [ + 103.902526855000076, + 11.30108642600004 + ], + [ + 103.900878906000059, + 11.297302246000072 + ], + [ + 103.901916504000042, + 11.292907715000069 + ], + [ + 103.902282715000069, + 11.288879395000038 + ], + [ + 103.901123047000056, + 11.284484863000046 + ], + [ + 103.898315430000082, + 11.280883789000029 + ], + [ + 103.894470215000069, + 11.277709961000028 + ], + [ + 103.891296387000068, + 11.276306152000075 + ], + [ + 103.886718750000057, + 11.275329590000069 + ], + [ + 103.884521484000061, + 11.272705078000058 + ], + [ + 103.885681152000075, + 11.269897461000028 + ], + [ + 103.887084961000085, + 11.266296387000068 + ], + [ + 103.884277344000054, + 11.263122559000067 + ], + [ + 103.881286621000072, + 11.260498047000056 + ], + [ + 103.877929687000062, + 11.26007080100004 + ], + [ + 103.875915527000075, + 11.256103516000053 + ], + [ + 103.872680664000086, + 11.253479004000042 + ], + [ + 103.872314453000058, + 11.250122070000032 + ], + [ + 103.873718262000068, + 11.247070312000062 + ], + [ + 103.873291016000053, + 11.243713379000042 + ], + [ + 103.872497559000067, + 11.240722656000059 + ], + [ + 103.869873047000056, + 11.239318848000039 + ], + [ + 103.86749267600004, + 11.236328125000057 + ], + [ + 103.864929199000073, + 11.232116699000073 + ], + [ + 103.862915039000086, + 11.229492187000062 + ], + [ + 103.860290527000075, + 11.226074219000054 + ], + [ + 103.854919434000067, + 11.224304199000073 + ], + [ + 103.851684570000032, + 11.222106934000067 + ], + [ + 103.854919434000067, + 11.219726562000062 + ], + [ + 103.857910156000059, + 11.217529297000056 + ], + [ + 103.860290527000075, + 11.214294434000067 + ], + [ + 103.863281250000057, + 11.211730957000043 + ], + [ + 103.866882324000073, + 11.207519531000059 + ], + [ + 103.868896484000061, + 11.203918457000043 + ], + [ + 103.869079590000069, + 11.200927734000061 + ], + [ + 103.871093750000057, + 11.197326660000044 + ], + [ + 103.872680664000086, + 11.193481445000032 + ], + [ + 103.873474121000072, + 11.189880371000072 + ], + [ + 103.874511719000054, + 11.186523437000062 + ], + [ + 103.874511719000054, + 11.182128906000059 + ], + [ + 103.877075195000032, + 11.178527832000043 + ], + [ + 103.877929687000062, + 11.17468261700003 + ], + [ + 103.881286621000072, + 11.172302246000072 + ], + [ + 103.881286621000072, + 11.167297363000046 + ], + [ + 103.883911133000083, + 11.164672852000024 + ], + [ + 103.885498047000056, + 11.161682129000042 + ], + [ + 103.886718750000057, + 11.158325195000032 + ], + [ + 103.88507080100004, + 11.155273437000062 + ], + [ + 103.882324219000054, + 11.153076172000056 + ], + [ + 103.879882812000062, + 11.154724121000072 + ], + [ + 103.877319336000085, + 11.153320312000062 + ], + [ + 103.874877930000082, + 11.150329590000069 + ], + [ + 103.871887207000043, + 11.149108887000068 + ], + [ + 103.871093750000057, + 11.146118164000029 + ], + [ + 103.870910645000038, + 11.143127441000047 + ], + [ + 103.871276855000076, + 11.139709473000039 + ], + [ + 103.871887207000043, + 11.135925293000071 + ], + [ + 103.868530273000033, + 11.132690430000025 + ], + [ + 103.863891602000081, + 11.131286621000072 + ], + [ + 103.863891602000081, + 11.127929687000062 + ], + [ + 103.864074707000043, + 11.122497559000067 + ], + [ + 103.860900879000042, + 11.120727539000029 + ], + [ + 103.859130859000061, + 11.117126465000069 + ], + [ + 103.859130859000061, + 11.113281250000057 + ], + [ + 103.856872559000067, + 11.10968017600004 + ], + [ + 103.854675293000071, + 11.106872559000067 + ], + [ + 103.851501465000069, + 11.103698730000076 + ], + [ + 103.848510742000087, + 11.101684570000032 + ], + [ + 103.844909668000071, + 11.100524902000075 + ], + [ + 103.840270996000072, + 11.097106934000067 + ], + [ + 103.839904785000044, + 11.093078613000046 + ], + [ + 103.841918945000032, + 11.089721680000025 + ], + [ + 103.841125488000046, + 11.085327148000033 + ], + [ + 103.844909668000071, + 11.087524414000029 + ], + [ + 103.846130371000072, + 11.083129883000026 + ], + [ + 103.842529297000056, + 11.080688477000024 + ], + [ + 103.845092773000033, + 11.079284668000071 + ], + [ + 103.848327637000068, + 11.078918457000043 + ], + [ + 103.846679687000062, + 11.075927734000061 + ], + [ + 103.846496582000043, + 11.072692871000072 + ], + [ + 103.841125488000046, + 11.072692871000072 + ], + [ + 103.835083008000083, + 11.072509766000053 + ], + [ + 103.832092285000044, + 11.070129395000038 + ], + [ + 103.829711914000086, + 11.067504883000026 + ], + [ + 103.827087402000075, + 11.064514160000044 + ], + [ + 103.824890137000068, + 11.060729980000076 + ], + [ + 103.822509766000053, + 11.057128906000059 + ], + [ + 103.817321777000075, + 11.055480957000043 + ], + [ + 103.814086914000086, + 11.053283691000047 + ], + [ + 103.810913086000085, + 11.051696777000075 + ], + [ + 103.808105469000054, + 11.050109863000046 + ], + [ + 103.805480957000043, + 11.048706055000025 + ], + [ + 103.801696777000075, + 11.04772949200003 + ], + [ + 103.796325684000067, + 11.047119141000053 + ], + [ + 103.793884277000075, + 11.042907715000069 + ], + [ + 103.791687012000068, + 11.040710449000073 + ], + [ + 103.790283203000058, + 11.037109375000057 + ], + [ + 103.785888672000056, + 11.023498535000044 + ], + [ + 103.786315918000071, + 11.018676758000026 + ], + [ + 103.786926270000038, + 11.01452636700003 + ], + [ + 103.787475586000085, + 11.010498047000056 + ], + [ + 103.787475586000085, + 11.006896973000039 + ], + [ + 103.788513184000067, + 11.003112793000071 + ], + [ + 103.790710449000073, + 10.997314453000058 + ], + [ + 103.791870117000087, + 10.994689941000047 + ], + [ + 103.792480469000054, + 10.99108886700003 + ], + [ + 103.792907715000069, + 10.987304687000062 + ], + [ + 103.793090820000032, + 10.984130859000061 + ], + [ + 103.793701172000056, + 10.981079102000024 + ], + [ + 103.793090820000032, + 10.977294922000056 + ], + [ + 103.791870117000087, + 10.973327637000068 + ], + [ + 103.791503906000059, + 10.968872070000032 + ], + [ + 103.792114258000083, + 10.96569824200003 + ], + [ + 103.792114258000083, + 10.961730957000043 + ], + [ + 103.79132080100004, + 10.957702637000068 + ], + [ + 103.790893555000082, + 10.954101562000062 + ], + [ + 103.791870117000087, + 10.950683594000054 + ], + [ + 103.793518066000047, + 10.947082520000038 + ], + [ + 103.795104980000076, + 10.943725586000028 + ], + [ + 103.797119141000053, + 10.939514160000044 + ], + [ + 103.792907715000069, + 10.937927246000072 + ], + [ + 103.787902832000043, + 10.936279297000056 + ], + [ + 103.784484863000046, + 10.935302734000061 + ], + [ + 103.780883789000086, + 10.935485840000069 + ], + [ + 103.776916504000042, + 10.934082031000059 + ], + [ + 103.773071289000086, + 10.931701660000044 + ], + [ + 103.770324707000043, + 10.930908203000058 + ], + [ + 103.767272949000073, + 10.931518555000025 + ], + [ + 103.765686035000044, + 10.927124023000033 + ], + [ + 103.762329102000081, + 10.924072266000053 + ], + [ + 103.757507324000073, + 10.922302246000072 + ], + [ + 103.753479004000042, + 10.920715332000043 + ], + [ + 103.751281738000046, + 10.917480469000054 + ], + [ + 103.752929687000062, + 10.914306641000053 + ], + [ + 103.749084473000039, + 10.914489746000072 + ], + [ + 103.746276855000076, + 10.911926270000038 + ], + [ + 103.745117187000062, + 10.907287598000039 + ], + [ + 103.743103027000075, + 10.905090332000043 + ], + [ + 103.740112305000082, + 10.903503418000071 + ], + [ + 103.737121582000043, + 10.901916504000042 + ], + [ + 103.736694336000085, + 10.898925781000059 + ], + [ + 103.733276367000087, + 10.901306152000075 + ], + [ + 103.730712891000053, + 10.904724121000072 + ], + [ + 103.727478027000075, + 10.902526855000076 + ], + [ + 103.727478027000075, + 10.897277832000043 + ], + [ + 103.724487305000082, + 10.895507812000062 + ], + [ + 103.721496582000043, + 10.896118164000029 + ], + [ + 103.718505859000061, + 10.896728516000053 + ], + [ + 103.716308594000054, + 10.900085449000073 + ], + [ + 103.712280273000033, + 10.903503418000071 + ], + [ + 103.712890625000057, + 10.908325195000032 + ], + [ + 103.708923340000069, + 10.906311035000044 + ], + [ + 103.705688477000081, + 10.906311035000044 + ], + [ + 103.704284668000071, + 10.909301758000026 + ], + [ + 103.703918457000043, + 10.912475586000028 + ], + [ + 103.703125, + 10.915893555000025 + ], + [ + 103.701721191000047, + 10.919311523000033 + ], + [ + 103.700073242000087, + 10.923706055000025 + ], + [ + 103.698120117000087, + 10.928100586000028 + ], + [ + 103.696289062000062, + 10.931884766000053 + ], + [ + 103.694885254000042, + 10.935729980000076 + ], + [ + 103.692687988000046, + 10.939697266000053 + ], + [ + 103.690307617000087, + 10.944274902000075 + ], + [ + 103.6875, + 10.947326660000044 + ], + [ + 103.685485840000069, + 10.950927734000061 + ], + [ + 103.685729980000076, + 10.954101562000062 + ], + [ + 103.685302734000061, + 10.957092285000044 + ], + [ + 103.683288574000073, + 10.961303711000028 + ], + [ + 103.681091309000067, + 10.965270996000072 + ], + [ + 103.678894043000071, + 10.968688965000069 + ], + [ + 103.676513672000056, + 10.972473145000038 + ], + [ + 103.674072266000053, + 10.976074219000054 + ], + [ + 103.672302246000072, + 10.978698730000076 + ], + [ + 103.670471191000047, + 10.981079102000024 + ], + [ + 103.668090820000032, + 10.984497070000032 + ], + [ + 103.665893555000082, + 10.987487793000071 + ], + [ + 103.663513184000067, + 10.990295410000044 + ], + [ + 103.660888672000056, + 10.994079590000069 + ], + [ + 103.658691406000059, + 10.997924805000025 + ], + [ + 103.661682129000042, + 10.999328613000046 + ], + [ + 103.663696289000086, + 11.003295898000033 + ], + [ + 103.664489746000072, + 11.008483887000068 + ], + [ + 103.662719727000081, + 11.012329102000024 + ], + [ + 103.661071777000075, + 11.016113281000059 + ], + [ + 103.662292480000076, + 11.019287109000061 + ], + [ + 103.664123535000044, + 11.022888184000067 + ], + [ + 103.663085937000062, + 11.02569580100004 + ], + [ + 103.662719727000081, + 11.029724121000072 + ], + [ + 103.659301758000083, + 11.033874512000068 + ], + [ + 103.657104492000087, + 11.037719727000024 + ], + [ + 103.654296875000057, + 11.040710449000073 + ], + [ + 103.652099609000061, + 11.044311523000033 + ], + [ + 103.650512695000032, + 11.047485352000024 + ], + [ + 103.648315430000082, + 11.049499512000068 + ], + [ + 103.648925781000059, + 11.052917480000076 + ], + [ + 103.652893066000047, + 11.055297852000024 + ], + [ + 103.656494141000053, + 11.05749511700003 + ], + [ + 103.660095215000069, + 11.060119629000042 + ], + [ + 103.660705566000047, + 11.067871094000054 + ], + [ + 103.658691406000059, + 11.071289062000062 + ], + [ + 103.659118652000075, + 11.076110840000069 + ], + [ + 103.659301758000083, + 11.080322266000053 + ], + [ + 103.654907227000081, + 11.078491211000028 + ], + [ + 103.650878906000059, + 11.079284668000071 + ], + [ + 103.647705078000058, + 11.080871582000043 + ], + [ + 103.643310547000056, + 11.083312988000046 + ], + [ + 103.639099121000072, + 11.085327148000033 + ], + [ + 103.635314941000047, + 11.086730957000043 + ], + [ + 103.630920410000044, + 11.088073730000076 + ], + [ + 103.625488281000059, + 11.088928223000039 + ], + [ + 103.621887207000043, + 11.089111328000058 + ], + [ + 103.618713379000042, + 11.088073730000076 + ], + [ + 103.614685059000067, + 11.086120605000076 + ], + [ + 103.610473633000083, + 11.086914062000062 + ], + [ + 103.606872559000067, + 11.088073730000076 + ], + [ + 103.603088379000042, + 11.090087891000053 + ], + [ + 103.599121094000054, + 11.091491699000073 + ], + [ + 103.595520020000038, + 11.092712402000075 + ], + [ + 103.592285156000059, + 11.094116211000028 + ], + [ + 103.591308594000054, + 11.09851074200003 + ], + [ + 103.589904785000044, + 11.102294922000056 + ], + [ + 103.587280273000033, + 11.106872559000067 + ], + [ + 103.584716797000056, + 11.110473633000026 + ], + [ + 103.582702637000068, + 11.112915039000029 + ], + [ + 103.580078125000057, + 11.115905762000068 + ], + [ + 103.578125, + 11.121093750000057 + ], + [ + 103.575073242000087, + 11.126098633000026 + ], + [ + 103.573120117000087, + 11.129699707000043 + ], + [ + 103.572326660000044, + 11.132507324000073 + ], + [ + 103.571105957000043, + 11.135681152000075 + ], + [ + 103.569519043000071, + 11.138305664000029 + ], + [ + 103.567077637000068, + 11.141296387000068 + ], + [ + 103.564697266000053, + 11.144287109000061 + ], + [ + 103.562683105000076, + 11.148071289000029 + ], + [ + 103.559875488000046, + 11.151306152000075 + ], + [ + 103.557678223000039, + 11.154479980000076 + ], + [ + 103.554504395000038, + 11.158081055000025 + ], + [ + 103.553100586000085, + 11.162292480000076 + ], + [ + 103.553100586000085, + 11.167907715000069 + ], + [ + 103.548095703000058, + 11.167297363000046 + ], + [ + 103.544311523000033, + 11.167480469000054 + ], + [ + 103.54132080100004, + 11.168090820000032 + ], + [ + 103.538330078000058, + 11.16827392600004 + ], + [ + 103.534729004000042, + 11.168701172000056 + ], + [ + 103.531494141000053, + 11.168884277000075 + ], + [ + 103.528320312000062, + 11.168884277000075 + ], + [ + 103.525512695000032, + 11.16827392600004 + ], + [ + 103.522094727000081, + 11.168090820000032 + ], + [ + 103.519104004000042, + 11.16827392600004 + ], + [ + 103.516113281000059, + 11.16827392600004 + ], + [ + 103.512329102000081, + 11.168090820000032 + ], + [ + 103.505493164000086, + 11.166076660000044 + ], + [ + 103.501098633000083, + 11.164123535000044 + ], + [ + 103.500122070000032, + 11.161315918000071 + ], + [ + 103.497070312000062, + 11.15850830100004 + ], + [ + 103.49249267600004, + 11.154113770000038 + ], + [ + 103.489074707000043, + 11.150329590000069 + ], + [ + 103.485717773000033, + 11.147521973000039 + ], + [ + 103.480712891000053, + 11.145324707000043 + ], + [ + 103.473876953000058, + 11.143493652000075 + ], + [ + 103.472717285000044, + 11.140686035000044 + ], + [ + 103.471923828000058, + 11.136718750000057 + ], + [ + 103.471496582000043, + 11.133728027000075 + ], + [ + 103.470275879000042, + 11.130920410000044 + ], + [ + 103.468322754000042, + 11.127502441000047 + ], + [ + 103.465881348000039, + 11.124328613000046 + ], + [ + 103.463928223000039, + 11.121704102000024 + ], + [ + 103.460693359000061, + 11.118896484000061 + ], + [ + 103.455871582000043, + 11.116271973000039 + ], + [ + 103.452697754000042, + 11.112670898000033 + ], + [ + 103.450683594000054, + 11.10968017600004 + ], + [ + 103.448120117000087, + 11.107116699000073 + ], + [ + 103.446105957000043, + 11.104675293000071 + ], + [ + 103.443725586000085, + 11.102294922000056 + ], + [ + 103.444519043000071, + 11.09851074200003 + ], + [ + 103.449707031000059, + 11.099487305000025 + ], + [ + 103.453918457000043, + 11.100708008000026 + ], + [ + 103.458312988000046, + 11.102111816000047 + ], + [ + 103.460876465000069, + 11.103698730000076 + ], + [ + 103.464294434000067, + 11.105102539000029 + ], + [ + 103.468872070000032, + 11.102905273000033 + ], + [ + 103.468688965000069, + 11.09851074200003 + ], + [ + 103.469116211000085, + 11.095520020000038 + ], + [ + 103.468505859000061, + 11.09210205100004 + ], + [ + 103.467529297000056, + 11.089111328000058 + ], + [ + 103.464111328000058, + 11.085327148000033 + ], + [ + 103.460083008000083, + 11.082519531000059 + ], + [ + 103.457275391000053, + 11.080078125000057 + ], + [ + 103.453918457000043, + 11.077087402000075 + ], + [ + 103.451293945000032, + 11.074890137000068 + ], + [ + 103.449890137000068, + 11.072082520000038 + ], + [ + 103.448730469000054, + 11.068115234000061 + ], + [ + 103.448303223000039, + 11.064514160000044 + ], + [ + 103.448120117000087, + 11.061279297000056 + ], + [ + 103.447692871000072, + 11.057922363000046 + ], + [ + 103.447692871000072, + 11.054870605000076 + ], + [ + 103.447082520000038, + 11.051513672000056 + ], + [ + 103.447326660000044, + 11.047912598000039 + ], + [ + 103.446472168000071, + 11.044311523000033 + ], + [ + 103.444091797000056, + 11.040710449000073 + ], + [ + 103.442077637000068, + 11.037475586000028 + ], + [ + 103.439880371000072, + 11.03350830100004 + ], + [ + 103.438476562000062, + 11.028930664000029 + ], + [ + 103.436706543000071, + 11.02569580100004 + ], + [ + 103.435302734000061, + 11.021911621000072 + ], + [ + 103.433288574000073, + 11.01788330100004 + ], + [ + 103.431274414000086, + 11.01452636700003 + ], + [ + 103.429870605000076, + 11.011901855000076 + ], + [ + 103.428527832000043, + 11.008728027000075 + ], + [ + 103.426879883000083, + 11.004516602000024 + ], + [ + 103.426330566000047, + 10.999877930000025 + ], + [ + 103.424926758000083, + 10.995727539000029 + ], + [ + 103.423889160000044, + 10.990905762000068 + ], + [ + 103.423095703000058, + 10.986694336000028 + ], + [ + 103.421081543000071, + 10.982299805000025 + ], + [ + 103.418518066000047, + 10.978271484000061 + ], + [ + 103.416503906000059, + 10.975891113000046 + ], + [ + 103.414916992000087, + 10.973083496000072 + ], + [ + 103.414123535000044, + 10.970275879000042 + ], + [ + 103.413330078000058, + 10.967285156000059 + ], + [ + 103.411682129000042, + 10.963073730000076 + ], + [ + 103.410522461000085, + 10.958312988000046 + ], + [ + 103.410705566000047, + 10.954284668000071 + ], + [ + 103.410888672000056, + 10.951110840000069 + ], + [ + 103.411499023000033, + 10.94812011700003 + ], + [ + 103.412475586000085, + 10.944702148000033 + ], + [ + 103.413696289000086, + 10.940124512000068 + ], + [ + 103.415893555000082, + 10.935913086000028 + ], + [ + 103.41827392600004, + 10.932312012000068 + ], + [ + 103.420104980000076, + 10.929077148000033 + ], + [ + 103.421081543000071, + 10.924926758000026 + ], + [ + 103.420715332000043, + 10.921325684000067 + ], + [ + 103.420104980000076, + 10.917480469000054 + ], + [ + 103.419921875000057, + 10.913513184000067 + ], + [ + 103.420104980000076, + 10.909729004000042 + ], + [ + 103.420898437000062, + 10.905883789000029 + ], + [ + 103.422119141000053, + 10.902709961000028 + ], + [ + 103.424072266000053, + 10.898498535000044 + ], + [ + 103.424926758000083, + 10.893493652000075 + ], + [ + 103.421691895000038, + 10.892517090000069 + ], + [ + 103.418701172000056, + 10.893920898000033 + ], + [ + 103.415100098000039, + 10.893676758000026 + ], + [ + 103.411682129000042, + 10.893676758000026 + ], + [ + 103.408874512000068, + 10.89288330100004 + ], + [ + 103.406494141000053, + 10.891113281000059 + ], + [ + 103.404296875000057, + 10.888916016000053 + ], + [ + 103.402893066000047, + 10.885314941000047 + ], + [ + 103.398071289000086, + 10.882873535000044 + ], + [ + 103.394104004000042, + 10.880920410000044 + ], + [ + 103.390075684000067, + 10.879516602000024 + ], + [ + 103.386901855000076, + 10.876525879000042 + ], + [ + 103.383300781000059, + 10.877319336000028 + ], + [ + 103.379699707000043, + 10.880126953000058 + ], + [ + 103.375488281000059, + 10.88171386700003 + ], + [ + 103.370727539000086, + 10.881103516000053 + ], + [ + 103.366516113000046, + 10.879272461000028 + ], + [ + 103.364074707000043, + 10.877075195000032 + ], + [ + 103.361083984000061, + 10.875488281000059 + ], + [ + 103.357910156000059, + 10.873107910000044 + ], + [ + 103.355529785000044, + 10.869873047000056 + ], + [ + 103.354492187000062, + 10.865905762000068 + ], + [ + 103.350891113000046, + 10.867675781000059 + ], + [ + 103.350891113000046, + 10.871520996000072 + ], + [ + 103.351501465000069, + 10.874328613000046 + ], + [ + 103.350097656000059, + 10.877075195000032 + ], + [ + 103.34991455100004, + 10.880493164000029 + ], + [ + 103.348876953000058, + 10.884094238000046 + ], + [ + 103.346923828000058, + 10.887512207000043 + ], + [ + 103.344482422000056, + 10.890319824000073 + ], + [ + 103.342285156000059, + 10.892700195000032 + ], + [ + 103.340515137000068, + 10.894897461000028 + ], + [ + 103.337890625000057, + 10.897521973000039 + ], + [ + 103.33428955100004, + 10.900512695000032 + ], + [ + 103.331115723000039, + 10.902282715000069 + ], + [ + 103.32647705100004, + 10.904479980000076 + ], + [ + 103.321472168000071, + 10.904296875000057 + ], + [ + 103.318481445000032, + 10.907470703000058 + ], + [ + 103.315124512000068, + 10.908081055000025 + ], + [ + 103.312316895000038, + 10.910095215000069 + ], + [ + 103.311706543000071, + 10.91491699200003 + ], + [ + 103.307312012000068, + 10.913085937000062 + ], + [ + 103.304321289000086, + 10.914123535000044 + ], + [ + 103.301879883000083, + 10.915893555000025 + ], + [ + 103.297729492000087, + 10.915100098000039 + ], + [ + 103.291687012000068, + 10.915283203000058 + ], + [ + 103.287475586000085, + 10.91632080100004 + ], + [ + 103.287719727000081, + 10.920471191000047 + ], + [ + 103.284301758000083, + 10.923889160000044 + ], + [ + 103.278503418000071, + 10.922912598000039 + ], + [ + 103.275512695000032, + 10.921875 + ], + [ + 103.271911621000072, + 10.92272949200003 + ], + [ + 103.26788330100004, + 10.923522949000073 + ], + [ + 103.264099121000072, + 10.923095703000058 + ], + [ + 103.26007080100004, + 10.923522949000073 + ], + [ + 103.255310059000067, + 10.92272949200003 + ], + [ + 103.252075195000032, + 10.921325684000067 + ], + [ + 103.249328613000046, + 10.919921875000057 + ], + [ + 103.245910645000038, + 10.918701172000056 + ], + [ + 103.243286133000083, + 10.917480469000054 + ], + [ + 103.241516113000046, + 10.913879395000038 + ], + [ + 103.239685059000067, + 10.909912109000061 + ], + [ + 103.235900879000042, + 10.908874512000068 + ], + [ + 103.232116699000073, + 10.90710449200003 + ], + [ + 103.228698730000076, + 10.904296875000057 + ], + [ + 103.228088379000042, + 10.901123047000056 + ], + [ + 103.228271484000061, + 10.898071289000029 + ], + [ + 103.225708008000083, + 10.895507812000062 + ], + [ + 103.221923828000058, + 10.894104004000042 + ], + [ + 103.217285156000059, + 10.893310547000056 + ], + [ + 103.214294434000067, + 10.890502930000025 + ], + [ + 103.212280273000033, + 10.887695312000062 + ], + [ + 103.211486816000047, + 10.883911133000026 + ], + [ + 103.211486816000047, + 10.880493164000029 + ], + [ + 103.206909180000082, + 10.879699707000043 + ], + [ + 103.203125, + 10.878112793000071 + ], + [ + 103.200073242000087, + 10.876892090000069 + ], + [ + 103.197082520000038, + 10.876098633000026 + ], + [ + 103.194091797000056, + 10.875122070000032 + ], + [ + 103.191101074000073, + 10.873474121000072 + ], + [ + 103.187683105000076, + 10.872497559000067 + ], + [ + 103.184692383000083, + 10.873107910000044 + ], + [ + 103.182922363000046, + 10.870910645000038 + ], + [ + 103.180908203000058, + 10.866699219000054 + ], + [ + 103.179504395000038, + 10.862121582000043 + ], + [ + 103.181091309000067, + 10.858093262000068 + ], + [ + 103.177124023000033, + 10.858703613000046 + ], + [ + 103.173522949000073, + 10.859130859000061 + ], + [ + 103.170104980000076, + 10.862670898000033 + ], + [ + 103.167480469000054, + 10.86608886700003 + ], + [ + 103.164489746000072, + 10.868103027000075 + ], + [ + 103.161682129000042, + 10.871093750000057 + ], + [ + 103.156494141000053, + 10.873718262000068 + ], + [ + 103.151672363000046, + 10.874511719000054 + ], + [ + 103.147277832000043, + 10.872924805000025 + ], + [ + 103.146484375000057, + 10.868713379000042 + ], + [ + 103.145874023000033, + 10.864318848000039 + ], + [ + 103.143310547000056, + 10.862487793000071 + ], + [ + 103.139709473000039, + 10.862915039000029 + ], + [ + 103.135314941000047, + 10.864685059000067 + ], + [ + 103.130310059000067, + 10.866699219000054 + ], + [ + 103.127075195000032, + 10.868713379000042 + ], + [ + 103.123718262000068, + 10.870483398000033 + ], + [ + 103.121520996000072, + 10.874328613000046 + ], + [ + 103.124694824000073, + 10.87530517600004 + ], + [ + 103.127929687000062, + 10.874511719000054 + ], + [ + 103.130493164000086, + 10.877075195000032 + ], + [ + 103.131713867000087, + 10.880920410000044 + ], + [ + 103.132080078000058, + 10.886474609000061 + ], + [ + 103.130493164000086, + 10.891723633000026 + ], + [ + 103.129272461000085, + 10.895324707000043 + ], + [ + 103.127075195000032, + 10.897888184000067 + ], + [ + 103.125122070000032, + 10.90069580100004 + ], + [ + 103.123107910000044, + 10.902893066000047 + ], + [ + 103.120727539000086, + 10.905090332000043 + ], + [ + 103.118286133000083, + 10.90710449200003 + ], + [ + 103.114501953000058, + 10.909912109000061 + ], + [ + 103.111328125000057, + 10.911926270000038 + ], + [ + 103.10772705100004, + 10.913696289000029 + ], + [ + 103.103088379000042, + 10.915527344000054 + ], + [ + 103.098876953000058, + 10.916503906000059 + ], + [ + 103.098083496000072, + 10.920288086000028 + ], + [ + 103.097473145000038, + 10.924316406000059 + ], + [ + 103.097106934000067, + 10.928100586000028 + ], + [ + 103.096313477000081, + 10.931518555000025 + ], + [ + 103.095886230000076, + 10.936279297000056 + ], + [ + 103.097106934000067, + 10.940490723000039 + ], + [ + 103.098083496000072, + 10.944274902000075 + ], + [ + 103.096496582000043, + 10.948730469000054 + ], + [ + 103.097717285000044, + 10.952270508000026 + ], + [ + 103.099304199000073, + 10.955688477000024 + ], + [ + 103.101928711000085, + 10.95928955100004 + ], + [ + 103.105529785000044, + 10.960876465000069 + ], + [ + 103.107910156000059, + 10.962890625000057 + ], + [ + 103.108520508000083, + 10.967285156000059 + ], + [ + 103.108520508000083, + 10.971130371000072 + ], + [ + 103.108276367000087, + 10.975280762000068 + ], + [ + 103.108703613000046, + 10.980285645000038 + ], + [ + 103.108886719000054, + 10.985473633000026 + ], + [ + 103.108886719000054, + 10.990722656000059 + ], + [ + 103.109130859000061, + 10.996093750000057 + ], + [ + 103.108886719000054, + 10.999511719000054 + ], + [ + 103.108703613000046, + 11.002929687000062 + ], + [ + 103.108276367000087, + 11.006286621000072 + ], + [ + 103.107910156000059, + 11.010681152000075 + ], + [ + 103.107116699000073, + 11.01593017600004 + ], + [ + 103.107116699000073, + 11.020080566000047 + ], + [ + 103.106323242000087, + 11.022888184000067 + ], + [ + 103.105529785000044, + 11.02569580100004 + ], + [ + 103.104675293000071, + 11.029479980000076 + ], + [ + 103.103881836000085, + 11.032714844000054 + ], + [ + 103.103088379000042, + 11.036499023000033 + ], + [ + 103.102294922000056, + 11.040283203000058 + ], + [ + 103.101318359000061, + 11.044677734000061 + ], + [ + 103.09991455100004, + 11.048889160000044 + ], + [ + 103.097106934000067, + 11.053527832000043 + ], + [ + 103.097106934000067, + 11.056884766000053 + ], + [ + 103.096923828000058, + 11.061706543000071 + ], + [ + 103.096679687000062, + 11.067504883000026 + ], + [ + 103.096923828000058, + 11.071105957000043 + ], + [ + 103.096923828000058, + 11.074096680000025 + ], + [ + 103.095092773000033, + 11.076721191000047 + ], + [ + 103.089721680000082, + 11.078308105000076 + ], + [ + 103.091491699000073, + 11.081481934000067 + ], + [ + 103.095275879000042, + 11.083129883000026 + ], + [ + 103.097473145000038, + 11.079711914000029 + ], + [ + 103.100097656000059, + 11.077270508000026 + ], + [ + 103.104125977000081, + 11.078491211000028 + ], + [ + 103.10772705100004, + 11.082092285000044 + ], + [ + 103.109924316000047, + 11.085876465000069 + ], + [ + 103.110717773000033, + 11.090087891000053 + ], + [ + 103.111328125000057, + 11.094726562000062 + ], + [ + 103.113708496000072, + 11.097717285000044 + ], + [ + 103.117126465000069, + 11.100524902000075 + ], + [ + 103.117126465000069, + 11.104675293000071 + ], + [ + 103.116699219000054, + 11.108093262000068 + ], + [ + 103.116088867000087, + 11.111877441000047 + ], + [ + 103.115905762000068, + 11.115478516000053 + ], + [ + 103.115478516000053, + 11.119873047000056 + ], + [ + 103.114929199000073, + 11.125671387000068 + ], + [ + 103.114074707000043, + 11.130493164000029 + ], + [ + 103.113281250000057, + 11.133728027000075 + ], + [ + 103.112121582000043, + 11.138671875000057 + ], + [ + 103.111083984000061, + 11.142700195000032 + ], + [ + 103.111083984000061, + 11.147521973000039 + ], + [ + 103.109497070000032, + 11.150512695000032 + ], + [ + 103.107482910000044, + 11.152709961000028 + ], + [ + 103.106079102000081, + 11.156494141000053 + ], + [ + 103.104675293000071, + 11.161682129000042 + ], + [ + 103.103515625000057, + 11.165893555000025 + ], + [ + 103.102478027000075, + 11.169494629000042 + ], + [ + 103.101501465000069, + 11.17272949200003 + ], + [ + 103.100280762000068, + 11.176696777000075 + ], + [ + 103.099304199000073, + 11.180114746000072 + ], + [ + 103.097900391000053, + 11.184326172000056 + ], + [ + 103.096313477000081, + 11.188476562000062 + ], + [ + 103.094909668000071, + 11.192077637000068 + ], + [ + 103.093688965000069, + 11.195129395000038 + ], + [ + 103.09210205100004, + 11.198913574000073 + ], + [ + 103.090270996000072, + 11.203125 + ], + [ + 103.088500977000081, + 11.206481934000067 + ], + [ + 103.087097168000071, + 11.209472656000059 + ], + [ + 103.085327148000033, + 11.212524414000029 + ], + [ + 103.083679199000073, + 11.214904785000044 + ], + [ + 103.081909180000082, + 11.217529297000056 + ], + [ + 103.079711914000086, + 11.220275879000042 + ], + [ + 103.076904297000056, + 11.222900391000053 + ], + [ + 103.073120117000087, + 11.22351074200003 + ], + [ + 103.068725586000085, + 11.222900391000053 + ], + [ + 103.065490723000039, + 11.222106934000067 + ], + [ + 103.062927246000072, + 11.219909668000071 + ], + [ + 103.059875488000046, + 11.219116211000028 + ], + [ + 103.056884766000053, + 11.217529297000056 + ], + [ + 103.053283691000047, + 11.216491699000073 + ], + [ + 103.050720215000069, + 11.218872070000032 + ], + [ + 103.047912598000039, + 11.223327637000068 + ], + [ + 103.049926758000083, + 11.226318359000061 + ], + [ + 103.051879883000083, + 11.229125977000024 + ], + [ + 103.055725098000039, + 11.230102539000029 + ], + [ + 103.056518555000082, + 11.233520508000026 + ], + [ + 103.059082031000059, + 11.235107422000056 + ], + [ + 103.061889648000033, + 11.235717773000033 + ], + [ + 103.064697266000053, + 11.237304687000062 + ], + [ + 103.067687988000046, + 11.238281250000057 + ], + [ + 103.070678711000085, + 11.238281250000057 + ], + [ + 103.071105957000043, + 11.242675781000059 + ], + [ + 103.069702148000033, + 11.247497559000067 + ], + [ + 103.067687988000046, + 11.251281738000046 + ], + [ + 103.065673828000058, + 11.255676270000038 + ], + [ + 103.066528320000032, + 11.259521484000061 + ], + [ + 103.069091797000056, + 11.260681152000075 + ], + [ + 103.072509766000053, + 11.260681152000075 + ], + [ + 103.075927734000061, + 11.264282227000024 + ], + [ + 103.076721191000047, + 11.269714355000076 + ], + [ + 103.075317383000083, + 11.274108887000068 + ], + [ + 103.073913574000073, + 11.277526855000076 + ], + [ + 103.072326660000044, + 11.280517578000058 + ], + [ + 103.070922852000081, + 11.283081055000025 + ], + [ + 103.071899414000086, + 11.286315918000071 + ], + [ + 103.074890137000068, + 11.285522461000028 + ], + [ + 103.078125, + 11.284912109000061 + ], + [ + 103.082702637000068, + 11.285888672000056 + ], + [ + 103.087524414000086, + 11.286499023000033 + ], + [ + 103.093078613000046, + 11.286682129000042 + ], + [ + 103.093688965000069, + 11.291076660000044 + ], + [ + 103.094726562000062, + 11.295471191000047 + ], + [ + 103.093322754000042, + 11.299499512000068 + ], + [ + 103.096130371000072, + 11.298889160000044 + ], + [ + 103.099121094000054, + 11.298278809000067 + ], + [ + 103.103088379000042, + 11.298278809000067 + ], + [ + 103.106506348000039, + 11.300720215000069 + ], + [ + 103.108093262000068, + 11.303894043000071 + ], + [ + 103.112304687000062, + 11.304321289000029 + ], + [ + 103.115478516000053, + 11.306091309000067 + ], + [ + 103.118713379000042, + 11.309509277000075 + ], + [ + 103.119689941000047, + 11.314270020000038 + ], + [ + 103.119873047000056, + 11.317871094000054 + ], + [ + 103.123107910000044, + 11.317504883000026 + ], + [ + 103.125488281000059, + 11.315917969000054 + ], + [ + 103.127929687000062, + 11.313293457000043 + ], + [ + 103.131530762000068, + 11.312316895000038 + ], + [ + 103.136291504000042, + 11.313476562000062 + ], + [ + 103.139709473000039, + 11.316284180000025 + ], + [ + 103.14288330100004, + 11.318481445000032 + ], + [ + 103.145080566000047, + 11.320495605000076 + ], + [ + 103.144287109000061, + 11.323913574000073 + ], + [ + 103.141906738000046, + 11.327514648000033 + ], + [ + 103.139709473000039, + 11.332092285000044 + ], + [ + 103.136901855000076, + 11.336914062000062 + ], + [ + 103.134521484000061, + 11.339904785000044 + ], + [ + 103.134887695000032, + 11.343322754000042 + ], + [ + 103.136718750000057, + 11.346496582000043 + ], + [ + 103.134521484000061, + 11.349304199000073 + ], + [ + 103.130920410000044, + 11.350708008000026 + ], + [ + 103.127075195000032, + 11.349670410000044 + ], + [ + 103.122924805000082, + 11.348876953000058 + ], + [ + 103.119079590000069, + 11.348876953000058 + ], + [ + 103.115112305000082, + 11.346313477000024 + ], + [ + 103.112915039000086, + 11.344299316000047 + ], + [ + 103.109313965000069, + 11.342895508000026 + ], + [ + 103.104125977000081, + 11.344299316000047 + ], + [ + 103.101684570000032, + 11.348327637000068 + ], + [ + 103.096923828000058, + 11.350524902000075 + ], + [ + 103.094116211000085, + 11.353698730000076 + ], + [ + 103.092285156000059, + 11.357116699000073 + ], + [ + 103.090698242000087, + 11.360473633000026 + ], + [ + 103.090270996000072, + 11.363525391000053 + ], + [ + 103.089477539000086, + 11.367309570000032 + ], + [ + 103.088928223000039, + 11.370117187000062 + ], + [ + 103.088073730000076, + 11.373718262000068 + ], + [ + 103.087890625000057, + 11.377685547000056 + ], + [ + 103.087524414000086, + 11.382507324000073 + ], + [ + 103.086730957000043, + 11.386718750000057 + ], + [ + 103.086303711000085, + 11.390075684000067 + ], + [ + 103.085693359000061, + 11.393920898000033 + ], + [ + 103.085876465000069, + 11.397705078000058 + ], + [ + 103.088073730000076, + 11.401306152000075 + ], + [ + 103.086486816000047, + 11.405700684000067 + ], + [ + 103.086120605000076, + 11.409118652000075 + ], + [ + 103.083923340000069, + 11.411682129000042 + ], + [ + 103.082519531000059, + 11.414489746000072 + ], + [ + 103.080871582000043, + 11.417480469000054 + ], + [ + 103.076904297000056, + 11.420715332000043 + ], + [ + 103.074890137000068, + 11.416076660000044 + ], + [ + 103.071899414000086, + 11.417907715000069 + ], + [ + 103.070922852000081, + 11.420715332000043 + ], + [ + 103.070495605000076, + 11.424499512000068 + ], + [ + 103.071105957000043, + 11.427673340000069 + ], + [ + 103.071716309000067, + 11.431274414000029 + ], + [ + 103.067871094000054, + 11.429077148000033 + ], + [ + 103.064880371000072, + 11.427307129000042 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 5.8740670578899996, + "Shape_Area": 0.99717623556199997, + "ADM1_EN": "Kratie", + "ADM1_PCODE": "KH10", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 106.324890137000068, + 13.400329590000069 + ], + [ + 106.328674316000047, + 13.399902344000054 + ], + [ + 106.333129883000083, + 13.39929199200003 + ], + [ + 106.337097168000071, + 13.399475098000039 + ], + [ + 106.350097656000059, + 13.400085449000073 + ], + [ + 106.350708008000083, + 13.396728516000053 + ], + [ + 106.351318359000061, + 13.392517090000069 + ], + [ + 106.351501465000069, + 13.388305664000029 + ], + [ + 106.351074219000054, + 13.383728027000075 + ], + [ + 106.353088379000042, + 13.379699707000043 + ], + [ + 106.353088379000042, + 13.375488281000059 + ], + [ + 106.352478027000075, + 13.372070312000062 + ], + [ + 106.352294922000056, + 13.366699219000054 + ], + [ + 106.350708008000083, + 13.361328125000057 + ], + [ + 106.352478027000075, + 13.358886719000054 + ], + [ + 106.354125977000081, + 13.355285645000038 + ], + [ + 106.353881836000085, + 13.350891113000046 + ], + [ + 106.354675293000071, + 13.347717285000044 + ], + [ + 106.356506348000039, + 13.343505859000061 + ], + [ + 106.356506348000039, + 13.338073730000076 + ], + [ + 106.354492187000062, + 13.33288574200003 + ], + [ + 106.352111816000047, + 13.328308105000076 + ], + [ + 106.351074219000054, + 13.32507324200003 + ], + [ + 106.350280762000068, + 13.322326660000044 + ], + [ + 106.349670410000044, + 13.319091797000056 + ], + [ + 106.34991455100004, + 13.314880371000072 + ], + [ + 106.350097656000059, + 13.310119629000042 + ], + [ + 106.350097656000059, + 13.306518555000025 + ], + [ + 106.348693848000039, + 13.302673340000069 + ], + [ + 106.346923828000058, + 13.29968261700003 + ], + [ + 106.345886230000076, + 13.294494629000042 + ], + [ + 106.346496582000043, + 13.28991699200003 + ], + [ + 106.347717285000044, + 13.286499023000033 + ], + [ + 106.349487305000082, + 13.284118652000075 + ], + [ + 106.350708008000083, + 13.281311035000044 + ], + [ + 106.351074219000054, + 13.277709961000028 + ], + [ + 106.352294922000056, + 13.274108887000068 + ], + [ + 106.354309082000043, + 13.270874023000033 + ], + [ + 106.356323242000087, + 13.267700195000032 + ], + [ + 106.359130859000061, + 13.264099121000072 + ], + [ + 106.361083984000061, + 13.261108398000033 + ], + [ + 106.366271973000039, + 13.251525879000042 + ], + [ + 106.36749267600004, + 13.248718262000068 + ], + [ + 106.368530273000033, + 13.244506836000028 + ], + [ + 106.368530273000033, + 13.239929199000073 + ], + [ + 106.369079590000069, + 13.236877441000047 + ], + [ + 106.370727539000086, + 13.234497070000032 + ], + [ + 106.372924805000082, + 13.23272705100004 + ], + [ + 106.375671387000068, + 13.23132324200003 + ], + [ + 106.378906250000057, + 13.229675293000071 + ], + [ + 106.381896973000039, + 13.228088379000042 + ], + [ + 106.385498047000056, + 13.226928711000028 + ], + [ + 106.389282227000081, + 13.225524902000075 + ], + [ + 106.392517090000069, + 13.224121094000054 + ], + [ + 106.397277832000043, + 13.221496582000043 + ], + [ + 106.401123047000056, + 13.219482422000056 + ], + [ + 106.404479980000076, + 13.216674805000025 + ], + [ + 106.407287598000039, + 13.214294434000067 + ], + [ + 106.409484863000046, + 13.211914062000062 + ], + [ + 106.411499023000033, + 13.208923340000069 + ], + [ + 106.414306641000053, + 13.205688477000024 + ], + [ + 106.416870117000087, + 13.201904297000056 + ], + [ + 106.419494629000042, + 13.199707031000059 + ], + [ + 106.421691895000038, + 13.197692871000072 + ], + [ + 106.424682617000087, + 13.193908691000047 + ], + [ + 106.426879883000083, + 13.189086914000029 + ], + [ + 106.428527832000043, + 13.184509277000075 + ], + [ + 106.429687500000057, + 13.181091309000067 + ], + [ + 106.430725098000039, + 13.177307129000042 + ], + [ + 106.431274414000086, + 13.174499512000068 + ], + [ + 106.430908203000058, + 13.171325684000067 + ], + [ + 106.428894043000071, + 13.169128418000071 + ], + [ + 106.424072266000053, + 13.169677734000061 + ], + [ + 106.419311523000033, + 13.170471191000047 + ], + [ + 106.415893555000082, + 13.168884277000075 + ], + [ + 106.412292480000076, + 13.170104980000076 + ], + [ + 106.409118652000075, + 13.171875 + ], + [ + 106.405273437000062, + 13.173278809000067 + ], + [ + 106.401672363000046, + 13.174499512000068 + ], + [ + 106.398925781000059, + 13.175476074000073 + ], + [ + 106.394287109000061, + 13.174072266000053 + ], + [ + 106.389099121000072, + 13.172302246000072 + ], + [ + 106.38507080100004, + 13.17272949200003 + ], + [ + 106.381286621000072, + 13.17272949200003 + ], + [ + 106.377929687000062, + 13.172485352000024 + ], + [ + 106.374511719000054, + 13.172302246000072 + ], + [ + 106.370483398000033, + 13.172302246000072 + ], + [ + 106.366271973000039, + 13.172485352000024 + ], + [ + 106.362121582000043, + 13.172912598000039 + ], + [ + 106.357116699000073, + 13.173522949000073 + ], + [ + 106.352722168000071, + 13.172912598000039 + ], + [ + 106.349670410000044, + 13.171508789000029 + ], + [ + 106.348083496000072, + 13.167907715000069 + ], + [ + 106.346923828000058, + 13.163879395000038 + ], + [ + 106.344909668000071, + 13.160278320000032 + ], + [ + 106.344299316000047, + 13.155883789000029 + ], + [ + 106.343872070000089, + 13.152099609000061 + ], + [ + 106.341491699000073, + 13.148071289000029 + ], + [ + 106.338928223000039, + 13.133911133000026 + ], + [ + 106.340881348000039, + 13.129516602000024 + ], + [ + 106.341125488000046, + 13.122070312000062 + ], + [ + 106.339111328000058, + 13.11608886700003 + ], + [ + 106.340881348000039, + 13.110290527000075 + ], + [ + 106.341491699000073, + 13.105712891000053 + ], + [ + 106.343078613000046, + 13.101928711000028 + ], + [ + 106.344482422000056, + 13.099304199000073 + ], + [ + 106.348327637000068, + 13.097717285000044 + ], + [ + 106.351318359000061, + 13.095092773000033 + ], + [ + 106.354919434000067, + 13.093078613000046 + ], + [ + 106.357482910000044, + 13.089721680000025 + ], + [ + 106.359924316000047, + 13.086730957000043 + ], + [ + 106.360717773000033, + 13.082519531000059 + ], + [ + 106.363281250000057, + 13.079528809000067 + ], + [ + 106.372070312000062, + 13.069091797000056 + ], + [ + 106.374877930000082, + 13.065490723000039 + ], + [ + 106.378723145000038, + 13.057678223000039 + ], + [ + 106.381713867000087, + 13.054321289000029 + ], + [ + 106.388488770000038, + 13.050720215000069 + ], + [ + 106.394104004000042, + 13.049499512000068 + ], + [ + 106.403503418000071, + 13.045288086000028 + ], + [ + 106.405517578000058, + 13.04187011700003 + ], + [ + 106.405700684000067, + 13.036926270000038 + ], + [ + 106.408325195000089, + 13.030883789000029 + ], + [ + 106.410888672000056, + 13.028930664000029 + ], + [ + 106.413085937000062, + 13.027099609000061 + ], + [ + 106.415283203000058, + 13.024719238000046 + ], + [ + 106.417480469000054, + 13.021728516000053 + ], + [ + 106.421081543000071, + 13.020690918000071 + ], + [ + 106.425292969000054, + 13.021118164000029 + ], + [ + 106.429687500000057, + 13.019104004000042 + ], + [ + 106.433715820000089, + 13.016906738000046 + ], + [ + 106.436279297000056, + 13.014709473000039 + ], + [ + 106.439086914000086, + 13.014099121000072 + ], + [ + 106.441101074000073, + 13.011291504000042 + ], + [ + 106.444274902000075, + 13.011291504000042 + ], + [ + 106.448120117000087, + 13.013671875000057 + ], + [ + 106.451293945000089, + 13.014709473000039 + ], + [ + 106.454711914000086, + 13.014282227000024 + ], + [ + 106.458679199000073, + 13.012878418000071 + ], + [ + 106.462707520000038, + 13.013305664000029 + ], + [ + 106.466674805000082, + 13.011291504000042 + ], + [ + 106.477111816000047, + 13.004089355000076 + ], + [ + 106.479675293000071, + 13.002319336000028 + ], + [ + 106.496704102000081, + 12.991882324000073 + ], + [ + 106.500488281000059, + 12.990295410000044 + ], + [ + 106.510925293000071, + 12.985290527000075 + ], + [ + 106.519104004000042, + 12.981506348000039 + ], + [ + 106.524108887000068, + 12.978881836000028 + ], + [ + 106.527282715000069, + 12.977478027000075 + ], + [ + 106.532470703000058, + 12.974304199000073 + ], + [ + 106.536071777000075, + 12.972290039000029 + ], + [ + 106.54132080100004, + 12.969482422000056 + ], + [ + 106.545104980000076, + 12.96710205100004 + ], + [ + 106.549926758000083, + 12.964111328000058 + ], + [ + 106.554687500000057, + 12.961120605000076 + ], + [ + 106.560485840000069, + 12.957275391000053 + ], + [ + 106.569091797000056, + 12.951721191000047 + ], + [ + 106.575683594000054, + 12.947326660000044 + ], + [ + 106.585876465000069, + 12.939880371000072 + ], + [ + 106.59210205100004, + 12.935119629000042 + ], + [ + 106.595703125000057, + 12.932128906000059 + ], + [ + 106.600524902000075, + 12.927490234000061 + ], + [ + 106.603515625000057, + 12.924072266000053 + ], + [ + 106.605895996000072, + 12.920715332000043 + ], + [ + 106.607910156000059, + 12.917480469000054 + ], + [ + 106.610107422000056, + 12.914123535000044 + ], + [ + 106.613098145000038, + 12.911071777000075 + ], + [ + 106.612670898000033, + 12.907287598000039 + ], + [ + 106.613708496000072, + 12.903320312000062 + ], + [ + 106.613708496000072, + 12.900329590000069 + ], + [ + 106.613525391000053, + 12.896301270000038 + ], + [ + 106.613708496000072, + 12.893127441000047 + ], + [ + 106.613708496000072, + 12.88952636700003 + ], + [ + 106.613708496000072, + 12.886108398000033 + ], + [ + 106.613281250000057, + 12.882507324000073 + ], + [ + 106.612915039000086, + 12.878906250000057 + ], + [ + 106.612304687000062, + 12.874694824000073 + ], + [ + 106.611877441000047, + 12.871704102000024 + ], + [ + 106.611694336000085, + 12.868530273000033 + ], + [ + 106.611083984000061, + 12.863525391000053 + ], + [ + 106.610107422000056, + 12.859130859000061 + ], + [ + 106.609313965000069, + 12.855712891000053 + ], + [ + 106.607482910000044, + 12.851318359000061 + ], + [ + 106.605712891000053, + 12.847717285000044 + ], + [ + 106.603088379000042, + 12.843688965000069 + ], + [ + 106.600708008000083, + 12.840515137000068 + ], + [ + 106.598693848000039, + 12.837890625000057 + ], + [ + 106.595886230000076, + 12.835083008000026 + ], + [ + 106.593688965000069, + 12.832275391000053 + ], + [ + 106.590515137000068, + 12.829284668000071 + ], + [ + 106.588317871000072, + 12.827270508000026 + ], + [ + 106.585876465000069, + 12.825317383000026 + ], + [ + 106.583496094000054, + 12.822875977000024 + ], + [ + 106.579711914000086, + 12.819702148000033 + ], + [ + 106.576721191000047, + 12.816894531000059 + ], + [ + 106.573120117000087, + 12.813720703000058 + ], + [ + 106.568908691000047, + 12.810302734000061 + ], + [ + 106.565307617000087, + 12.806884766000053 + ], + [ + 106.562316895000038, + 12.804077148000033 + ], + [ + 106.559875488000046, + 12.801696777000075 + ], + [ + 106.557678223000039, + 12.79968261700003 + ], + [ + 106.554504395000038, + 12.796875 + ], + [ + 106.550109863000046, + 12.793701172000056 + ], + [ + 106.545288086000085, + 12.78991699200003 + ], + [ + 106.541503906000059, + 12.787292480000076 + ], + [ + 106.537109375000057, + 12.786071777000075 + ], + [ + 106.532104492000087, + 12.787475586000028 + ], + [ + 106.527099609000061, + 12.786315918000071 + ], + [ + 106.522705078000058, + 12.784729004000042 + ], + [ + 106.519104004000042, + 12.783325195000032 + ], + [ + 106.515319824000073, + 12.78210449200003 + ], + [ + 106.511474609000061, + 12.779113770000038 + ], + [ + 106.506896973000039, + 12.778503418000071 + ], + [ + 106.503479004000042, + 12.779113770000038 + ], + [ + 106.499511719000054, + 12.776672363000046 + ], + [ + 106.497314453000058, + 12.77429199200003 + ], + [ + 106.493530273000033, + 12.772094727000024 + ], + [ + 106.490478516000053, + 12.769897461000028 + ], + [ + 106.487304687000062, + 12.767089844000054 + ], + [ + 106.485107422000056, + 12.763671875000057 + ], + [ + 106.483093262000068, + 12.760314941000047 + ], + [ + 106.481689453000058, + 12.757324219000054 + ], + [ + 106.478698730000076, + 12.755493164000029 + ], + [ + 106.47491455100004, + 12.752502441000047 + ], + [ + 106.470520020000038, + 12.749694824000073 + ], + [ + 106.467712402000075, + 12.748474121000072 + ], + [ + 106.464904785000044, + 12.746887207000043 + ], + [ + 106.462524414000086, + 12.745300293000071 + ], + [ + 106.459472656000059, + 12.742919922000056 + ], + [ + 106.456481934000067, + 12.740905762000068 + ], + [ + 106.453491211000085, + 12.739074707000043 + ], + [ + 106.44952392600004, + 12.736877441000047 + ], + [ + 106.446289062000062, + 12.73468017600004 + ], + [ + 106.443298340000069, + 12.73272705100004 + ], + [ + 106.440124512000068, + 12.729919434000067 + ], + [ + 106.436889648000033, + 12.727294922000056 + ], + [ + 106.434509277000075, + 12.725097656000059 + ], + [ + 106.431884766000053, + 12.722717285000044 + ], + [ + 106.429870605000076, + 12.720520020000038 + ], + [ + 106.426879883000083, + 12.716308594000054 + ], + [ + 106.424682617000087, + 12.712524414000029 + ], + [ + 106.422912598000039, + 12.709899902000075 + ], + [ + 106.421508789000086, + 12.707092285000044 + ], + [ + 106.420288086000085, + 12.704284668000071 + ], + [ + 106.419128418000071, + 12.70147705100004 + ], + [ + 106.416870117000087, + 12.697509766000053 + ], + [ + 106.414489746000072, + 12.693481445000032 + ], + [ + 106.412292480000076, + 12.689880371000072 + ], + [ + 106.410095215000069, + 12.686523437000062 + ], + [ + 106.406921387000068, + 12.684509277000075 + ], + [ + 106.405517578000058, + 12.679687500000057 + ], + [ + 106.403503418000071, + 12.676513672000056 + ], + [ + 106.402282715000069, + 12.671875 + ], + [ + 106.401489258000083, + 12.667114258000026 + ], + [ + 106.401489258000083, + 12.661926270000038 + ], + [ + 106.401672363000046, + 12.656494141000053 + ], + [ + 106.401306152000075, + 12.651672363000046 + ], + [ + 106.400329590000069, + 12.646728516000053 + ], + [ + 106.399291992000087, + 12.642089844000054 + ], + [ + 106.397888184000067, + 12.638122559000067 + ], + [ + 106.396728516000053, + 12.634277344000054 + ], + [ + 106.395690918000071, + 12.631530762000068 + ], + [ + 106.393920898000033, + 12.627319336000028 + ], + [ + 106.391906738000046, + 12.622680664000029 + ], + [ + 106.390686035000044, + 12.619873047000056 + ], + [ + 106.389282227000081, + 12.616882324000073 + ], + [ + 106.387512207000043, + 12.612670898000033 + ], + [ + 106.385314941000047, + 12.608093262000068 + ], + [ + 106.383300781000059, + 12.603271484000061 + ], + [ + 106.381713867000087, + 12.599670410000044 + ], + [ + 106.380493164000086, + 12.596923828000058 + ], + [ + 106.378906250000057, + 12.593078613000046 + ], + [ + 106.377685547000056, + 12.590270996000072 + ], + [ + 106.376708984000061, + 12.587524414000029 + ], + [ + 106.37530517600004, + 12.584472656000059 + ], + [ + 106.373901367000087, + 12.581298828000058 + ], + [ + 106.372070312000062, + 12.577514648000033 + ], + [ + 106.370300293000071, + 12.572692871000072 + ], + [ + 106.368713379000042, + 12.568908691000047 + ], + [ + 106.367309570000089, + 12.565673828000058 + ], + [ + 106.366088867000087, + 12.5625 + ], + [ + 106.364929199000073, + 12.559692383000026 + ], + [ + 106.363891602000081, + 12.556274414000029 + ], + [ + 106.362915039000086, + 12.553283691000047 + ], + [ + 106.362121582000043, + 12.550109863000046 + ], + [ + 106.361511230000076, + 12.546875 + ], + [ + 106.360900879000042, + 12.542907715000069 + ], + [ + 106.359497070000089, + 12.536682129000042 + ], + [ + 106.358886719000054, + 12.532470703000058 + ], + [ + 106.359130859000061, + 12.528686523000033 + ], + [ + 106.361328125000057, + 12.524902344000054 + ], + [ + 106.363281250000057, + 12.521484375000057 + ], + [ + 106.366516113000046, + 12.518127441000047 + ], + [ + 106.370727539000086, + 12.514282227000024 + ], + [ + 106.374694824000073, + 12.511901855000076 + ], + [ + 106.378479004000042, + 12.509277344000054 + ], + [ + 106.382507324000073, + 12.507690430000025 + ], + [ + 106.387878418000071, + 12.505676270000038 + ], + [ + 106.392517090000069, + 12.504089355000076 + ], + [ + 106.395690918000071, + 12.503112793000071 + ], + [ + 106.497314453000058, + 12.438903809000067 + ], + [ + 106.501892090000069, + 12.437927246000072 + ], + [ + 106.505676270000038, + 12.439514160000044 + ], + [ + 106.509277344000054, + 12.439086914000029 + ], + [ + 106.512695312000062, + 12.437683105000076 + ], + [ + 106.515686035000044, + 12.437683105000076 + ], + [ + 106.519897461000085, + 12.435485840000069 + ], + [ + 106.522705078000058, + 12.433288574000073 + ], + [ + 106.523925781000059, + 12.429687500000057 + ], + [ + 106.525085449000073, + 12.426513672000056 + ], + [ + 106.527282715000069, + 12.424499512000068 + ], + [ + 106.531677246000072, + 12.421508789000029 + ], + [ + 106.536315918000071, + 12.418701172000056 + ], + [ + 106.540100098000039, + 12.417724609000061 + ], + [ + 106.544494629000042, + 12.417480469000054 + ], + [ + 106.547302246000072, + 12.415893555000025 + ], + [ + 106.548889160000044, + 12.413085937000062 + ], + [ + 106.552917480000076, + 12.411499023000033 + ], + [ + 106.556518555000082, + 12.409484863000046 + ], + [ + 106.560119629000042, + 12.409484863000046 + ], + [ + 106.563720703000058, + 12.408325195000032 + ], + [ + 106.568298340000069, + 12.404296875000057 + ], + [ + 106.570129395000038, + 12.401123047000056 + ], + [ + 106.570922852000081, + 12.396484375000057 + ], + [ + 106.573913574000073, + 12.389282227000024 + ], + [ + 106.57647705100004, + 12.382080078000058 + ], + [ + 106.579284668000071, + 12.375671387000068 + ], + [ + 106.581909180000082, + 12.370727539000029 + ], + [ + 106.584472656000059, + 12.363281250000057 + ], + [ + 106.586120605000076, + 12.357910156000059 + ], + [ + 106.588317871000072, + 12.350097656000059 + ], + [ + 106.590698242000087, + 12.343688965000069 + ], + [ + 106.592712402000075, + 12.338500977000024 + ], + [ + 106.595092773000033, + 12.334106445000032 + ], + [ + 106.597106934000067, + 12.329711914000029 + ], + [ + 106.599670410000044, + 12.324890137000068 + ], + [ + 106.602722168000071, + 12.319885254000042 + ], + [ + 106.604919434000067, + 12.317687988000046 + ], + [ + 106.608276367000087, + 12.314514160000044 + ], + [ + 106.613525391000053, + 12.313110352000024 + ], + [ + 106.618530273000033, + 12.311523437000062 + ], + [ + 106.621276855000076, + 12.309875488000046 + ], + [ + 106.624511719000054, + 12.307678223000039 + ], + [ + 106.628112793000071, + 12.305908203000058 + ], + [ + 106.633300781000059, + 12.305480957000043 + ], + [ + 106.639526367000087, + 12.305480957000043 + ], + [ + 106.645324707000043, + 12.303710937000062 + ], + [ + 106.648681641000053, + 12.300903320000032 + ], + [ + 106.651306152000075, + 12.299072266000053 + ], + [ + 106.654724121000072, + 12.298278809000067 + ], + [ + 106.659912109000061, + 12.298095703000058 + ], + [ + 106.663879395000038, + 12.297485352000024 + ], + [ + 106.666870117000087, + 12.296508789000029 + ], + [ + 106.670288086000085, + 12.294921875000057 + ], + [ + 106.673706055000082, + 12.29327392600004 + ], + [ + 106.677673340000069, + 12.291687012000068 + ], + [ + 106.681884766000053, + 12.290527344000054 + ], + [ + 106.686279297000056, + 12.290527344000054 + ], + [ + 106.689514160000044, + 12.290283203000058 + ], + [ + 106.693298340000069, + 12.289672852000024 + ], + [ + 106.697082520000038, + 12.289306641000053 + ], + [ + 106.700927734000061, + 12.288330078000058 + ], + [ + 106.703674316000047, + 12.287719727000024 + ], + [ + 106.707519531000059, + 12.286071777000075 + ], + [ + 106.710876465000069, + 12.283874512000068 + ], + [ + 106.714111328000058, + 12.281494141000053 + ], + [ + 106.718078613000046, + 12.277893066000047 + ], + [ + 106.722473145000038, + 12.274719238000046 + ], + [ + 106.726318359000061, + 12.273315430000025 + ], + [ + 106.729125977000081, + 12.272521973000039 + ], + [ + 106.732116699000073, + 12.272888184000067 + ], + [ + 106.736511230000076, + 12.271118164000029 + ], + [ + 106.740112305000082, + 12.268920898000033 + ], + [ + 106.743530273000033, + 12.26647949200003 + ], + [ + 106.746704102000081, + 12.264282227000024 + ], + [ + 106.748291016000053, + 12.260925293000071 + ], + [ + 106.75030517600004, + 12.256530762000068 + ], + [ + 106.753723145000038, + 12.254272461000028 + ], + [ + 106.756530762000068, + 12.252319336000028 + ], + [ + 106.759277344000054, + 12.250122070000032 + ], + [ + 106.762329102000081, + 12.249511719000054 + ], + [ + 106.764282227000081, + 12.245483398000033 + ], + [ + 106.765075684000067, + 12.240478516000053 + ], + [ + 106.766723633000083, + 12.236877441000047 + ], + [ + 106.768127441000047, + 12.233520508000026 + ], + [ + 106.770324707000043, + 12.23132324200003 + ], + [ + 106.773681641000053, + 12.228881836000028 + ], + [ + 106.775878906000059, + 12.226318359000061 + ], + [ + 106.778076172000056, + 12.223327637000068 + ], + [ + 106.781127930000082, + 12.219726562000062 + ], + [ + 106.785095215000069, + 12.215087891000053 + ], + [ + 106.786926270000038, + 12.210693359000061 + ], + [ + 106.788879395000038, + 12.206481934000067 + ], + [ + 106.792907715000069, + 12.202880859000061 + ], + [ + 106.796081543000071, + 12.199096680000025 + ], + [ + 106.798706055000082, + 12.194885254000042 + ], + [ + 106.801330566000047, + 12.191284180000025 + ], + [ + 106.801513672000056, + 12.187072754000042 + ], + [ + 106.800292969000054, + 12.18389892600004 + ], + [ + 106.796875, + 12.179504395000038 + ], + [ + 106.795898437000062, + 12.174316406000059 + ], + [ + 106.797119141000053, + 12.170288086000028 + ], + [ + 106.797729492000087, + 12.167480469000054 + ], + [ + 106.799072266000053, + 12.164672852000024 + ], + [ + 106.798095703000058, + 12.158874512000068 + ], + [ + 106.795288086000085, + 12.155883789000029 + ], + [ + 106.79327392600004, + 12.153503418000071 + ], + [ + 106.793884277000075, + 12.149719238000046 + ], + [ + 106.795898437000062, + 12.146301270000038 + ], + [ + 106.797302246000072, + 12.141906738000046 + ], + [ + 106.797485352000081, + 12.138122559000067 + ], + [ + 106.798706055000082, + 12.134521484000061 + ], + [ + 106.796875, + 12.130310059000067 + ], + [ + 106.795715332000043, + 12.126098633000026 + ], + [ + 106.793701172000056, + 12.120910645000038 + ], + [ + 106.791076660000044, + 12.116516113000046 + ], + [ + 106.791503906000059, + 12.111694336000028 + ], + [ + 106.793518066000047, + 12.108520508000026 + ], + [ + 106.793884277000075, + 12.104919434000067 + ], + [ + 106.795471191000047, + 12.100280762000068 + ], + [ + 106.798278809000067, + 12.094726562000062 + ], + [ + 106.799499512000068, + 12.089721680000025 + ], + [ + 106.799316406000059, + 12.085083008000026 + ], + [ + 106.794494629000042, + 12.082519531000059 + ], + [ + 106.791870117000087, + 12.080322266000053 + ], + [ + 106.790283203000058, + 12.07647705100004 + ], + [ + 106.786926270000038, + 12.076110840000069 + ], + [ + 106.784912109000061, + 12.07312011700003 + ], + [ + 106.781921387000068, + 12.072082520000038 + ], + [ + 106.780883789000086, + 12.069091797000056 + ], + [ + 106.781311035000044, + 12.065490723000039 + ], + [ + 106.778503418000071, + 12.061706543000071 + ], + [ + 106.775512695000089, + 12.059082031000059 + ], + [ + 106.774108887000068, + 12.056518555000025 + ], + [ + 106.771484375000057, + 12.053527832000043 + ], + [ + 106.768676758000083, + 12.049316406000059 + ], + [ + 106.768493652000075, + 12.045288086000028 + ], + [ + 106.765502930000082, + 12.042297363000046 + ], + [ + 106.761901855000076, + 12.040527344000054 + ], + [ + 106.761108398000033, + 12.037719727000024 + ], + [ + 106.760314941000047, + 12.034484863000046 + ], + [ + 106.75811767600004, + 12.032470703000058 + ], + [ + 106.759277344000054, + 12.029907227000024 + ], + [ + 106.756103516000053, + 12.028503418000071 + ], + [ + 106.754272461000085, + 12.023925781000059 + ], + [ + 106.750671387000068, + 12.021728516000053 + ], + [ + 106.747314453000058, + 12.020874023000033 + ], + [ + 106.746887207000043, + 12.017089844000054 + ], + [ + 106.747680664000086, + 12.012695312000062 + ], + [ + 106.746276855000076, + 12.00811767600004 + ], + [ + 106.744873047000056, + 12.005126953000058 + ], + [ + 106.744323730000076, + 12.001708984000061 + ], + [ + 106.740295410000044, + 12.000488281000059 + ], + [ + 106.739501953000058, + 11.997680664000029 + ], + [ + 106.738281250000057, + 11.994506836000028 + ], + [ + 106.735900879000042, + 11.99249267600004 + ], + [ + 106.734924316000047, + 11.989501953000058 + ], + [ + 106.73272705100004, + 11.986083984000061 + ], + [ + 106.729492187000062, + 11.984130859000061 + ], + [ + 106.726928711000085, + 11.981689453000058 + ], + [ + 106.725524902000075, + 11.978515625000057 + ], + [ + 106.722473145000038, + 11.975524902000075 + ], + [ + 106.720703125000057, + 11.970703125000057 + ], + [ + 106.715698242000087, + 11.971923828000058 + ], + [ + 106.713317871000072, + 11.969726562000062 + ], + [ + 106.710693359000061, + 11.968505859000061 + ], + [ + 106.707519531000059, + 11.968078613000046 + ], + [ + 106.703674316000047, + 11.967895508000026 + ], + [ + 106.699096680000082, + 11.968688965000069 + ], + [ + 106.695129395000038, + 11.964721680000025 + ], + [ + 106.690307617000087, + 11.964294434000067 + ], + [ + 106.686889648000033, + 11.965270996000072 + ], + [ + 106.683715820000089, + 11.965270996000072 + ], + [ + 106.681274414000086, + 11.968505859000061 + ], + [ + 106.677917480000076, + 11.972900391000053 + ], + [ + 106.675720215000069, + 11.977722168000071 + ], + [ + 106.670471191000047, + 11.977905273000033 + ], + [ + 106.667297363000046, + 11.980895996000072 + ], + [ + 106.664306641000053, + 11.983886719000054 + ], + [ + 106.660705566000047, + 11.986511230000076 + ], + [ + 106.657714844000054, + 11.987670898000033 + ], + [ + 106.654724121000072, + 11.989074707000043 + ], + [ + 106.653076172000056, + 11.985717773000033 + ], + [ + 106.651672363000046, + 11.982299805000025 + ], + [ + 106.649902344000054, + 11.979675293000071 + ], + [ + 106.651489258000083, + 11.976318359000061 + ], + [ + 106.653930664000086, + 11.973327637000068 + ], + [ + 106.657287598000039, + 11.970092773000033 + ], + [ + 106.659729004000042, + 11.966918945000032 + ], + [ + 106.657287598000039, + 11.965087891000053 + ], + [ + 106.654296875000057, + 11.964477539000029 + ], + [ + 106.651123047000056, + 11.965515137000068 + ], + [ + 106.647277832000043, + 11.964721680000025 + ], + [ + 106.644104004000042, + 11.967895508000026 + ], + [ + 106.641906738000046, + 11.970703125000057 + ], + [ + 106.642700195000089, + 11.974121094000054 + ], + [ + 106.639099121000072, + 11.973327637000068 + ], + [ + 106.635925293000071, + 11.968322754000042 + ], + [ + 106.635314941000047, + 11.965087891000053 + ], + [ + 106.634704590000069, + 11.961914062000062 + ], + [ + 106.631103516000053, + 11.962097168000071 + ], + [ + 106.630126953000058, + 11.965087891000053 + ], + [ + 106.630920410000044, + 11.968078613000046 + ], + [ + 106.630310059000067, + 11.971313477000024 + ], + [ + 106.625671387000068, + 11.973693848000039 + ], + [ + 106.620727539000086, + 11.973876953000058 + ], + [ + 106.602722168000071, + 11.972900391000053 + ], + [ + 106.585083008000083, + 11.971923828000058 + ], + [ + 106.557312012000068, + 11.970275879000042 + ], + [ + 106.529907227000081, + 11.969726562000062 + ], + [ + 106.531677246000072, + 11.97351074200003 + ], + [ + 106.536315918000071, + 11.97491455100004 + ], + [ + 106.532470703000058, + 11.978088379000042 + ], + [ + 106.528930664000086, + 11.977478027000075 + ], + [ + 106.525085449000073, + 11.978698730000076 + ], + [ + 106.522705078000058, + 11.980285645000038 + ], + [ + 106.519287109000061, + 11.980895996000072 + ], + [ + 106.516296387000068, + 11.980285645000038 + ], + [ + 106.510925293000071, + 11.979492187000062 + ], + [ + 106.505920410000044, + 11.975891113000046 + ], + [ + 106.50030517600004, + 11.973327637000068 + ], + [ + 106.498107910000044, + 11.971313477000024 + ], + [ + 106.495727539000086, + 11.969299316000047 + ], + [ + 106.492126465000069, + 11.969116211000028 + ], + [ + 106.488891602000081, + 11.970275879000042 + ], + [ + 106.486083984000061, + 11.971679687000062 + ], + [ + 106.482910156000059, + 11.972106934000067 + ], + [ + 106.479125977000081, + 11.972290039000029 + ], + [ + 106.475280762000068, + 11.972717285000044 + ], + [ + 106.471130371000072, + 11.972900391000053 + ], + [ + 106.467895508000083, + 11.975708008000026 + ], + [ + 106.466674805000082, + 11.979492187000062 + ], + [ + 106.463928223000039, + 11.983520508000026 + ], + [ + 106.45928955100004, + 11.985717773000033 + ], + [ + 106.456298828000058, + 11.987915039000029 + ], + [ + 106.453491211000085, + 11.988525391000053 + ], + [ + 106.449707031000059, + 11.986877441000047 + ], + [ + 106.446472168000071, + 11.985900879000042 + ], + [ + 106.442687988000046, + 11.986511230000076 + ], + [ + 106.439880371000072, + 11.984130859000061 + ], + [ + 106.437072754000042, + 11.98132324200003 + ], + [ + 106.433471680000082, + 11.978088379000042 + ], + [ + 106.433471680000082, + 11.973083496000072 + ], + [ + 106.430297852000081, + 11.972290039000029 + ], + [ + 106.427307129000042, + 11.972717285000044 + ], + [ + 106.424072266000053, + 11.972473145000038 + ], + [ + 106.420715332000043, + 11.971923828000058 + ], + [ + 106.417724609000061, + 11.973327637000068 + ], + [ + 106.413879395000038, + 11.97351074200003 + ], + [ + 106.411071777000075, + 11.975097656000059 + ], + [ + 106.407714844000054, + 11.976318359000061 + ], + [ + 106.403503418000071, + 11.977294922000056 + ], + [ + 106.399719238000046, + 11.977294922000056 + ], + [ + 106.397888184000067, + 11.973083496000072 + ], + [ + 106.393310547000056, + 11.971130371000072 + ], + [ + 106.39093017600004, + 11.967895508000026 + ], + [ + 106.388305664000086, + 11.966308594000054 + ], + [ + 106.385314941000047, + 11.963684082000043 + ], + [ + 106.384521484000061, + 11.95928955100004 + ], + [ + 106.381713867000087, + 11.957092285000044 + ], + [ + 106.378906250000057, + 11.955322266000053 + ], + [ + 106.37530517600004, + 11.954528809000067 + ], + [ + 106.372070312000062, + 11.952880859000061 + ], + [ + 106.368286133000083, + 11.951293945000032 + ], + [ + 106.365478516000053, + 11.953674316000047 + ], + [ + 106.362915039000086, + 11.954895020000038 + ], + [ + 106.360290527000075, + 11.953491211000028 + ], + [ + 106.356689453000058, + 11.952087402000075 + ], + [ + 106.353515625000057, + 11.949890137000068 + ], + [ + 106.350280762000068, + 11.951904297000056 + ], + [ + 106.347290039000086, + 11.954284668000071 + ], + [ + 106.342712402000075, + 11.955871582000043 + ], + [ + 106.339111328000058, + 11.957702637000068 + ], + [ + 106.333312988000046, + 11.959716797000056 + ], + [ + 106.330078125000057, + 11.960327148000033 + ], + [ + 106.326721191000047, + 11.960693359000061 + ], + [ + 106.322326660000044, + 11.962280273000033 + ], + [ + 106.317871094000054, + 11.962280273000033 + ], + [ + 106.313293457000043, + 11.963928223000039 + ], + [ + 106.308105469000054, + 11.963684082000043 + ], + [ + 106.303527832000043, + 11.962890625000057 + ], + [ + 106.298706055000082, + 11.961486816000047 + ], + [ + 106.295471191000047, + 11.958923340000069 + ], + [ + 106.291687012000068, + 11.958923340000069 + ], + [ + 106.288330078000058, + 11.95788574200003 + ], + [ + 106.285888672000056, + 11.960510254000042 + ], + [ + 106.282470703000058, + 11.958496094000054 + ], + [ + 106.280883789000086, + 11.955078125000057 + ], + [ + 106.277099609000061, + 11.956298828000058 + ], + [ + 106.274291992000087, + 11.954711914000029 + ], + [ + 106.269287109000061, + 11.955078125000057 + ], + [ + 106.263916016000053, + 11.954284668000071 + ], + [ + 106.258911133000083, + 11.955688477000024 + ], + [ + 106.255920410000044, + 11.953674316000047 + ], + [ + 106.253112793000071, + 11.954284668000071 + ], + [ + 106.249328613000046, + 11.956481934000067 + ], + [ + 106.246704102000081, + 11.958496094000054 + ], + [ + 106.242309570000089, + 11.95928955100004 + ], + [ + 106.240478516000053, + 11.963500977000024 + ], + [ + 106.236083984000061, + 11.965881348000039 + ], + [ + 106.233276367000087, + 11.963317871000072 + ], + [ + 106.230895996000072, + 11.960327148000033 + ], + [ + 106.227905273000033, + 11.958679199000073 + ], + [ + 106.225097656000059, + 11.957519531000059 + ], + [ + 106.221130371000072, + 11.958129883000026 + ], + [ + 106.218688965000069, + 11.962280273000033 + ], + [ + 106.214721680000082, + 11.963928223000039 + ], + [ + 106.211120605000076, + 11.964904785000044 + ], + [ + 106.206726074000073, + 11.966125488000046 + ], + [ + 106.203125, + 11.96569824200003 + ], + [ + 106.199707031000059, + 11.965087891000053 + ], + [ + 106.199279785000044, + 11.968505859000061 + ], + [ + 106.196472168000071, + 11.967712402000075 + ], + [ + 106.195129395000038, + 11.964721680000025 + ], + [ + 106.19171142600004, + 11.962524414000029 + ], + [ + 106.188476562000062, + 11.961120605000076 + ], + [ + 106.186523437000062, + 11.956726074000073 + ], + [ + 106.183105469000054, + 11.954284668000071 + ], + [ + 106.179687500000057, + 11.953125 + ], + [ + 106.176513672000056, + 11.956115723000039 + ], + [ + 106.173706055000082, + 11.960327148000033 + ], + [ + 106.175476074000073, + 11.963684082000043 + ], + [ + 106.172302246000072, + 11.96569824200003 + ], + [ + 106.167114258000083, + 11.966674805000025 + ], + [ + 106.168884277000075, + 11.969726562000062 + ], + [ + 106.171875, + 11.969299316000047 + ], + [ + 106.174072266000053, + 11.971313477000024 + ], + [ + 106.174499512000068, + 11.975524902000075 + ], + [ + 106.174072266000053, + 11.978698730000076 + ], + [ + 106.171508789000086, + 11.981689453000058 + ], + [ + 106.170898437000062, + 11.986083984000061 + ], + [ + 106.170715332000043, + 11.989074707000043 + ], + [ + 106.170898437000062, + 11.99249267600004 + ], + [ + 106.171508789000086, + 11.996704102000024 + ], + [ + 106.175109863000046, + 11.998291016000053 + ], + [ + 106.175903320000089, + 12.002929687000062 + ], + [ + 106.179687500000057, + 12.005493164000029 + ], + [ + 106.181091309000067, + 12.010314941000047 + ], + [ + 106.179870605000076, + 12.015319824000073 + ], + [ + 106.176696777000075, + 12.016906738000046 + ], + [ + 106.179687500000057, + 12.019287109000061 + ], + [ + 106.179077148000033, + 12.023925781000059 + ], + [ + 106.17608642600004, + 12.027526855000076 + ], + [ + 106.172302246000072, + 12.030517578000058 + ], + [ + 106.172729492000087, + 12.034912109000061 + ], + [ + 106.169677734000061, + 12.036926270000038 + ], + [ + 106.165710449000073, + 12.038085937000062 + ], + [ + 106.162475586000085, + 12.042114258000026 + ], + [ + 106.157714844000054, + 12.040710449000073 + ], + [ + 106.155883789000086, + 12.044921875000057 + ], + [ + 106.154113770000038, + 12.048278809000067 + ], + [ + 106.150329590000069, + 12.048706055000025 + ], + [ + 106.148315430000082, + 12.051696777000075 + ], + [ + 106.146728516000053, + 12.054321289000029 + ], + [ + 106.143310547000056, + 12.052124023000033 + ], + [ + 106.139892578000058, + 12.049072266000053 + ], + [ + 106.136718750000057, + 12.051879883000026 + ], + [ + 106.136291504000042, + 12.048278809000067 + ], + [ + 106.133300781000059, + 12.046081543000071 + ], + [ + 106.132690430000082, + 12.049926758000026 + ], + [ + 106.132873535000044, + 12.052917480000076 + ], + [ + 106.131103516000053, + 12.055908203000058 + ], + [ + 106.128723145000038, + 12.054321289000029 + ], + [ + 106.126708984000061, + 12.056884766000053 + ], + [ + 106.122924805000082, + 12.055297852000024 + ], + [ + 106.120117187000062, + 12.057128906000059 + ], + [ + 106.121520996000072, + 12.060729980000076 + ], + [ + 106.118103027000075, + 12.062316895000038 + ], + [ + 106.117126465000069, + 12.065124512000068 + ], + [ + 106.117919922000056, + 12.067871094000054 + ], + [ + 106.115478516000053, + 12.070495605000076 + ], + [ + 106.113098145000038, + 12.072875977000024 + ], + [ + 106.111328125000057, + 12.075317383000026 + ], + [ + 106.10772705100004, + 12.073486328000058 + ], + [ + 106.104675293000071, + 12.074890137000068 + ], + [ + 106.100280762000068, + 12.074890137000068 + ], + [ + 106.095886230000076, + 12.072082520000038 + ], + [ + 106.094299316000047, + 12.074890137000068 + ], + [ + 106.090698242000087, + 12.073486328000058 + ], + [ + 106.086730957000043, + 12.07452392600004 + ], + [ + 106.086303711000085, + 12.071289062000062 + ], + [ + 106.083923340000069, + 12.069702148000033 + ], + [ + 106.080322266000053, + 12.069519043000071 + ], + [ + 106.077270508000083, + 12.070129395000038 + ], + [ + 106.073913574000073, + 12.072509766000053 + ], + [ + 106.074890137000068, + 12.077087402000075 + ], + [ + 106.075927734000061, + 12.081481934000067 + ], + [ + 106.071716309000067, + 12.082092285000044 + ], + [ + 106.068908691000047, + 12.080078125000057 + ], + [ + 106.063293457000043, + 12.081481934000067 + ], + [ + 106.059082031000059, + 12.082519531000059 + ], + [ + 106.059692383000083, + 12.085327148000033 + ], + [ + 106.057128906000059, + 12.086486816000047 + ], + [ + 106.053100586000085, + 12.085083008000026 + ], + [ + 106.051330566000047, + 12.081909180000025 + ], + [ + 106.048522949000073, + 12.081115723000039 + ], + [ + 106.044921875000057, + 12.082519531000059 + ], + [ + 106.046875, + 12.085876465000069 + ], + [ + 106.049499512000068, + 12.089477539000029 + ], + [ + 106.046325684000067, + 12.091674805000025 + ], + [ + 106.043518066000047, + 12.092895508000026 + ], + [ + 106.041687012000068, + 12.096679687000062 + ], + [ + 106.043518066000047, + 12.100280762000068 + ], + [ + 106.046691895000038, + 12.099670410000044 + ], + [ + 106.048889160000044, + 12.101928711000028 + ], + [ + 106.049682617000087, + 12.106689453000058 + ], + [ + 106.053527832000043, + 12.108093262000068 + ], + [ + 106.057128906000059, + 12.110107422000056 + ], + [ + 106.059326172000056, + 12.112670898000033 + ], + [ + 106.059692383000083, + 12.117126465000069 + ], + [ + 106.055725098000039, + 12.120483398000033 + ], + [ + 106.055908203000058, + 12.123718262000068 + ], + [ + 106.059509277000075, + 12.124328613000046 + ], + [ + 106.059875488000046, + 12.127929687000062 + ], + [ + 106.059082031000059, + 12.131896973000039 + ], + [ + 106.055480957000043, + 12.134094238000046 + ], + [ + 106.051330566000047, + 12.135681152000075 + ], + [ + 106.049926758000083, + 12.139892578000058 + ], + [ + 106.048095703000058, + 12.144897461000028 + ], + [ + 106.043884277000075, + 12.146118164000029 + ], + [ + 106.044921875000057, + 12.149719238000046 + ], + [ + 106.045104980000076, + 12.153076172000056 + ], + [ + 106.044677734000061, + 12.156311035000044 + ], + [ + 106.04132080100004, + 12.154907227000024 + ], + [ + 106.039672852000081, + 12.151306152000075 + ], + [ + 106.034912109000061, + 12.149719238000046 + ], + [ + 106.030090332000043, + 12.147521973000039 + ], + [ + 106.027282715000069, + 12.148315430000025 + ], + [ + 106.024475098000039, + 12.147277832000043 + ], + [ + 106.021484375000057, + 12.149108887000068 + ], + [ + 106.017517090000069, + 12.147277832000043 + ], + [ + 106.016296387000068, + 12.150085449000073 + ], + [ + 106.018310547000056, + 12.155090332000043 + ], + [ + 106.018310547000056, + 12.158874512000068 + ], + [ + 106.018920898000033, + 12.161682129000042 + ], + [ + 106.01593017600004, + 12.163696289000029 + ], + [ + 106.013122559000067, + 12.165710449000073 + ], + [ + 106.013488770000038, + 12.168884277000075 + ], + [ + 106.009521484000061, + 12.172912598000039 + ], + [ + 106.007324219000054, + 12.17608642600004 + ], + [ + 106.010681152000075, + 12.178894043000071 + ], + [ + 106.008911133000083, + 12.182678223000039 + ], + [ + 106.004272461000085, + 12.184082031000059 + ], + [ + 106.000122070000089, + 12.184509277000075 + ], + [ + 105.995910645000038, + 12.185302734000061 + ], + [ + 105.993103027000075, + 12.183288574000073 + ], + [ + 105.990722656000059, + 12.186523437000062 + ], + [ + 105.986511230000076, + 12.188110352000024 + ], + [ + 105.985290527000075, + 12.191284180000025 + ], + [ + 105.989074707000043, + 12.193725586000028 + ], + [ + 105.990478516000053, + 12.190490723000039 + ], + [ + 105.993530273000033, + 12.190673828000058 + ], + [ + 105.993286133000083, + 12.193908691000047 + ], + [ + 105.993103027000075, + 12.197082520000038 + ], + [ + 105.994689941000047, + 12.19952392600004 + ], + [ + 105.993103027000075, + 12.201904297000056 + ], + [ + 105.990112305000082, + 12.202697754000042 + ], + [ + 105.986694336000085, + 12.202697754000042 + ], + [ + 105.984497070000089, + 12.20007324200003 + ], + [ + 105.983276367000087, + 12.203674316000047 + ], + [ + 105.979309082000043, + 12.204711914000029 + ], + [ + 105.973693848000039, + 12.201293945000032 + ], + [ + 105.971923828000058, + 12.196716309000067 + ], + [ + 105.966125488000046, + 12.196716309000067 + ], + [ + 105.960693359000061, + 12.196289062000062 + ], + [ + 105.957275391000053, + 12.197692871000072 + ], + [ + 105.954895020000038, + 12.200927734000061 + ], + [ + 105.951721191000047, + 12.199096680000025 + ], + [ + 105.947509766000053, + 12.197875977000024 + ], + [ + 105.944274902000075, + 12.199890137000068 + ], + [ + 105.944274902000075, + 12.204101562000062 + ], + [ + 105.945129395000038, + 12.207092285000044 + ], + [ + 105.942077637000068, + 12.209472656000059 + ], + [ + 105.940490723000039, + 12.212524414000029 + ], + [ + 105.936706543000071, + 12.214111328000058 + ], + [ + 105.933288574000073, + 12.213073730000076 + ], + [ + 105.931518555000082, + 12.216491699000073 + ], + [ + 105.929870605000076, + 12.220275879000042 + ], + [ + 105.926330566000047, + 12.217529297000056 + ], + [ + 105.922485352000081, + 12.215881348000039 + ], + [ + 105.918701172000056, + 12.215515137000068 + ], + [ + 105.915893555000082, + 12.214294434000067 + ], + [ + 105.914123535000044, + 12.216491699000073 + ], + [ + 105.910095215000069, + 12.218688965000069 + ], + [ + 105.909118652000075, + 12.214477539000029 + ], + [ + 105.905517578000058, + 12.214721680000025 + ], + [ + 105.901123047000056, + 12.213317871000072 + ], + [ + 105.897277832000043, + 12.212097168000071 + ], + [ + 105.893493652000075, + 12.210876465000069 + ], + [ + 105.889709473000039, + 12.212524414000029 + ], + [ + 105.886108398000033, + 12.213500977000024 + ], + [ + 105.88311767600004, + 12.213073730000076 + ], + [ + 105.880310059000067, + 12.215881348000039 + ], + [ + 105.877075195000089, + 12.217895508000026 + ], + [ + 105.873107910000044, + 12.21569824200003 + ], + [ + 105.869506836000085, + 12.217529297000056 + ], + [ + 105.867309570000089, + 12.219726562000062 + ], + [ + 105.864685059000067, + 12.221923828000058 + ], + [ + 105.860717773000033, + 12.219299316000047 + ], + [ + 105.859313965000069, + 12.213073730000076 + ], + [ + 105.855102539000086, + 12.208923340000069 + ], + [ + 105.853881836000085, + 12.205871582000043 + ], + [ + 105.851928711000085, + 12.203308105000076 + ], + [ + 105.847717285000044, + 12.204711914000029 + ], + [ + 105.842529297000056, + 12.204895020000038 + ], + [ + 105.842285156000059, + 12.208312988000046 + ], + [ + 105.841125488000046, + 12.212524414000029 + ], + [ + 105.838317871000072, + 12.216918945000032 + ], + [ + 105.836914062000062, + 12.220703125000057 + ], + [ + 105.837707520000038, + 12.22491455100004 + ], + [ + 105.838073730000076, + 12.227905273000033 + ], + [ + 105.837280273000033, + 12.231079102000024 + ], + [ + 105.834716797000056, + 12.232910156000059 + ], + [ + 105.834106445000089, + 12.236877441000047 + ], + [ + 105.831298828000058, + 12.239685059000067 + ], + [ + 105.830078125000057, + 12.243530273000033 + ], + [ + 105.830688477000081, + 12.247497559000067 + ], + [ + 105.831115723000039, + 12.252075195000032 + ], + [ + 105.831115723000039, + 12.256896973000039 + ], + [ + 105.828491211000085, + 12.25811767600004 + ], + [ + 105.824707031000059, + 12.258483887000068 + ], + [ + 105.821105957000043, + 12.258911133000026 + ], + [ + 105.816894531000059, + 12.259887695000032 + ], + [ + 105.812316895000038, + 12.259887695000032 + ], + [ + 105.80889892600004, + 12.259887695000032 + ], + [ + 105.805725098000039, + 12.259887695000032 + ], + [ + 105.80108642600004, + 12.259704590000069 + ], + [ + 105.796081543000071, + 12.259094238000046 + ], + [ + 105.791687012000068, + 12.258728027000075 + ], + [ + 105.787109375000057, + 12.258728027000075 + ], + [ + 105.781921387000068, + 12.258728027000075 + ], + [ + 105.777893066000047, + 12.259094238000046 + ], + [ + 105.775085449000073, + 12.259704590000069 + ], + [ + 105.771118164000086, + 12.259887695000032 + ], + [ + 105.764892578000058, + 12.257873535000044 + ], + [ + 105.76007080100004, + 12.257690430000025 + ], + [ + 105.756530762000068, + 12.257873535000044 + ], + [ + 105.752319336000085, + 12.258483887000068 + ], + [ + 105.745483398000033, + 12.258911133000026 + ], + [ + 105.739929199000073, + 12.260498047000056 + ], + [ + 105.735473633000083, + 12.263305664000029 + ], + [ + 105.730529785000044, + 12.266113281000059 + ], + [ + 105.724670410000044, + 12.269470215000069 + ], + [ + 105.721130371000072, + 12.274475098000039 + ], + [ + 105.721130371000072, + 12.277526855000076 + ], + [ + 105.725524902000075, + 12.279113770000038 + ], + [ + 105.728271484000061, + 12.279907227000024 + ], + [ + 105.733276367000087, + 12.282287598000039 + ], + [ + 105.736511230000076, + 12.285278320000032 + ], + [ + 105.740112305000082, + 12.286682129000042 + ], + [ + 105.745300293000071, + 12.288085937000062 + ], + [ + 105.745117187000062, + 12.291503906000059 + ], + [ + 105.744506836000085, + 12.294677734000061 + ], + [ + 105.741882324000073, + 12.298522949000073 + ], + [ + 105.74249267600004, + 12.301330566000047 + ], + [ + 105.746520996000072, + 12.303710937000062 + ], + [ + 105.749694824000073, + 12.304687500000057 + ], + [ + 105.753112793000071, + 12.305908203000058 + ], + [ + 105.755920410000044, + 12.309875488000046 + ], + [ + 105.759277344000054, + 12.312683105000076 + ], + [ + 105.763671875000057, + 12.311523437000062 + ], + [ + 105.767089844000054, + 12.313476562000062 + ], + [ + 105.770507812000062, + 12.315673828000058 + ], + [ + 105.772094727000081, + 12.320129395000038 + ], + [ + 105.773315430000082, + 12.323730469000054 + ], + [ + 105.774291992000087, + 12.327697754000042 + ], + [ + 105.774902344000054, + 12.331115723000039 + ], + [ + 105.775878906000059, + 12.336303711000028 + ], + [ + 105.775878906000059, + 12.339294434000067 + ], + [ + 105.775878906000059, + 12.342712402000075 + ], + [ + 105.77569580100004, + 12.345886230000076 + ], + [ + 105.775512695000089, + 12.351318359000061 + ], + [ + 105.775085449000073, + 12.354919434000067 + ], + [ + 105.774902344000054, + 12.35827636700003 + ], + [ + 105.774719238000046, + 12.361511230000076 + ], + [ + 105.774291992000087, + 12.365478516000053 + ], + [ + 105.773681641000053, + 12.369506836000028 + ], + [ + 105.773315430000082, + 12.373291016000053 + ], + [ + 105.772705078000058, + 12.376708984000061 + ], + [ + 105.771911621000072, + 12.381530762000068 + ], + [ + 105.771118164000086, + 12.386291504000042 + ], + [ + 105.770324707000043, + 12.39147949200003 + ], + [ + 105.769287109000061, + 12.396728516000053 + ], + [ + 105.768310547000056, + 12.401489258000026 + ], + [ + 105.767272949000073, + 12.405517578000058 + ], + [ + 105.76593017600004, + 12.409912109000061 + ], + [ + 105.764892578000058, + 12.413330078000058 + ], + [ + 105.762695312000062, + 12.418884277000075 + ], + [ + 105.761901855000076, + 12.423706055000025 + ], + [ + 105.760925293000071, + 12.426513672000056 + ], + [ + 105.759704590000069, + 12.429687500000057 + ], + [ + 105.75811767600004, + 12.434692383000026 + ], + [ + 105.756713867000087, + 12.439086914000029 + ], + [ + 105.755310059000067, + 12.443725586000028 + ], + [ + 105.753906250000057, + 12.44812011700003 + ], + [ + 105.752502441000047, + 12.45147705100004 + ], + [ + 105.751281738000046, + 12.455505371000072 + ], + [ + 105.749877930000082, + 12.459472656000059 + ], + [ + 105.748474121000072, + 12.462707520000038 + ], + [ + 105.747314453000058, + 12.46569824200003 + ], + [ + 105.744689941000047, + 12.468872070000032 + ], + [ + 105.742309570000089, + 12.471313477000024 + ], + [ + 105.739929199000073, + 12.474670410000044 + ], + [ + 105.738708496000072, + 12.477905273000033 + ], + [ + 105.737487793000071, + 12.481689453000058 + ], + [ + 105.736083984000061, + 12.485900879000042 + ], + [ + 105.734924316000047, + 12.489501953000058 + ], + [ + 105.734130859000061, + 12.492675781000059 + ], + [ + 105.734313965000069, + 12.497314453000058 + ], + [ + 105.733520508000083, + 12.501281738000046 + ], + [ + 105.733520508000083, + 12.505310059000067 + ], + [ + 105.733276367000087, + 12.508300781000059 + ], + [ + 105.733276367000087, + 12.512329102000024 + ], + [ + 105.732910156000059, + 12.518676758000026 + ], + [ + 105.731079102000081, + 12.522094727000024 + ], + [ + 105.730895996000072, + 12.525329590000069 + ], + [ + 105.730712891000053, + 12.529113770000038 + ], + [ + 105.730712891000053, + 12.532470703000058 + ], + [ + 105.730529785000044, + 12.535888672000056 + ], + [ + 105.730712891000053, + 12.539489746000072 + ], + [ + 105.730102539000086, + 12.543518066000047 + ], + [ + 105.729492187000062, + 12.547119141000053 + ], + [ + 105.728271484000061, + 12.551513672000056 + ], + [ + 105.726684570000089, + 12.554687500000057 + ], + [ + 105.725280762000068, + 12.55749511700003 + ], + [ + 105.724121094000054, + 12.560485840000069 + ], + [ + 105.723083496000072, + 12.563903809000067 + ], + [ + 105.722473145000038, + 12.567077637000068 + ], + [ + 105.722106934000067, + 12.571899414000029 + ], + [ + 105.722290039000086, + 12.576721191000047 + ], + [ + 105.721923828000058, + 12.581481934000067 + ], + [ + 105.720886230000076, + 12.58428955100004 + ], + [ + 105.719482422000056, + 12.586914062000062 + ], + [ + 105.718078613000046, + 12.591674805000025 + ], + [ + 105.717529297000056, + 12.595275879000042 + ], + [ + 105.717285156000059, + 12.598327637000068 + ], + [ + 105.717529297000056, + 12.603515625000057 + ], + [ + 105.717529297000056, + 12.606872559000067 + ], + [ + 105.717895508000083, + 12.612304687000062 + ], + [ + 105.717895508000083, + 12.616516113000046 + ], + [ + 105.718322754000042, + 12.619506836000028 + ], + [ + 105.719482422000056, + 12.622924805000025 + ], + [ + 105.721313477000081, + 12.626281738000046 + ], + [ + 105.722290039000086, + 12.629272461000028 + ], + [ + 105.722717285000044, + 12.63311767600004 + ], + [ + 105.722717285000044, + 12.638122559000067 + ], + [ + 105.722290039000086, + 12.64147949200003 + ], + [ + 105.721496582000043, + 12.646118164000029 + ], + [ + 105.720520020000038, + 12.652526855000076 + ], + [ + 105.719299316000047, + 12.65710449200003 + ], + [ + 105.718688965000069, + 12.660522461000028 + ], + [ + 105.717895508000083, + 12.664306641000053 + ], + [ + 105.715698242000087, + 12.670104980000076 + ], + [ + 105.714111328000058, + 12.672912598000039 + ], + [ + 105.712097168000071, + 12.676879883000026 + ], + [ + 105.711914062000062, + 12.680297852000024 + ], + [ + 105.712097168000071, + 12.683715820000032 + ], + [ + 105.712280273000033, + 12.687683105000076 + ], + [ + 105.712280273000033, + 12.692321777000075 + ], + [ + 105.709899902000075, + 12.696289062000062 + ], + [ + 105.707092285000044, + 12.699279785000044 + ], + [ + 105.704895020000038, + 12.702087402000075 + ], + [ + 105.702514648000033, + 12.704711914000029 + ], + [ + 105.700500488000046, + 12.706909180000025 + ], + [ + 105.697875977000081, + 12.710083008000026 + ], + [ + 105.696472168000071, + 12.713684082000043 + ], + [ + 105.695495605000076, + 12.717529297000056 + ], + [ + 105.692077637000068, + 12.721679687000062 + ], + [ + 105.692504883000083, + 12.726074219000054 + ], + [ + 105.691894531000059, + 12.730102539000029 + ], + [ + 105.69171142600004, + 12.733520508000026 + ], + [ + 105.693298340000069, + 12.737487793000071 + ], + [ + 105.695678711000085, + 12.741516113000046 + ], + [ + 105.697326660000044, + 12.746520996000072 + ], + [ + 105.694885254000042, + 12.751098633000026 + ], + [ + 105.691284180000082, + 12.755310059000067 + ], + [ + 105.689514160000044, + 12.758911133000026 + ], + [ + 105.688293457000043, + 12.761901855000076 + ], + [ + 105.687316895000038, + 12.764892578000058 + ], + [ + 105.686706543000071, + 12.768676758000026 + ], + [ + 105.685302734000061, + 12.773315430000025 + ], + [ + 105.681274414000086, + 12.775329590000069 + ], + [ + 105.676513672000056, + 12.779479980000076 + ], + [ + 105.678894043000071, + 12.787475586000028 + ], + [ + 105.678894043000071, + 12.790527344000054 + ], + [ + 105.680297852000081, + 12.79327392600004 + ], + [ + 105.680297852000081, + 12.797302246000072 + ], + [ + 105.680114746000072, + 12.800720215000069 + ], + [ + 105.679687500000057, + 12.806884766000053 + ], + [ + 105.684326172000056, + 12.810729980000076 + ], + [ + 105.681701660000044, + 12.816894531000059 + ], + [ + 105.679504395000038, + 12.819274902000075 + ], + [ + 105.675903320000089, + 12.821899414000029 + ], + [ + 105.673889160000044, + 12.825317383000026 + ], + [ + 105.671875, + 12.827697754000042 + ], + [ + 105.671508789000086, + 12.831115723000039 + ], + [ + 105.674072266000053, + 12.835083008000026 + ], + [ + 105.677307129000042, + 12.837524414000029 + ], + [ + 105.680908203000058, + 12.841125488000046 + ], + [ + 105.683288574000073, + 12.844299316000047 + ], + [ + 105.684875488000046, + 12.847473145000038 + ], + [ + 105.686096191000047, + 12.850708008000026 + ], + [ + 105.6875, + 12.855895996000072 + ], + [ + 105.689086914000086, + 12.860290527000075 + ], + [ + 105.690124512000068, + 12.865722656000059 + ], + [ + 105.688476562000062, + 12.869506836000028 + ], + [ + 105.687072754000042, + 12.87390136700003 + ], + [ + 105.686096191000047, + 12.878479004000042 + ], + [ + 105.684509277000075, + 12.882080078000058 + ], + [ + 105.682495117000087, + 12.886291504000042 + ], + [ + 105.677673340000069, + 12.896301270000038 + ], + [ + 105.674682617000087, + 12.898315430000025 + ], + [ + 105.663879395000038, + 12.902282715000069 + ], + [ + 105.661499023000033, + 12.903930664000029 + ], + [ + 105.659484863000046, + 12.908081055000025 + ], + [ + 105.656494141000053, + 12.916503906000059 + ], + [ + 105.655273437000062, + 12.920715332000043 + ], + [ + 105.656127930000082, + 12.924926758000026 + ], + [ + 105.658874512000068, + 12.926696777000075 + ], + [ + 105.661315918000071, + 12.928710937000062 + ], + [ + 105.669311523000033, + 12.932678223000039 + ], + [ + 105.671081543000071, + 12.935913086000028 + ], + [ + 105.672485352000081, + 12.940124512000068 + ], + [ + 105.675903320000089, + 12.946472168000071 + ], + [ + 105.677307129000042, + 12.949890137000068 + ], + [ + 105.678100586000085, + 12.953125 + ], + [ + 105.676879883000083, + 12.956298828000058 + ], + [ + 105.671875, + 12.959472656000059 + ], + [ + 105.668090820000089, + 12.963500977000024 + ], + [ + 105.664306641000053, + 12.967895508000026 + ], + [ + 105.661682129000042, + 12.969726562000062 + ], + [ + 105.657287598000039, + 12.970092773000033 + ], + [ + 105.653686523000033, + 12.971923828000058 + ], + [ + 105.650085449000073, + 12.973083496000072 + ], + [ + 105.647705078000058, + 12.975280762000068 + ], + [ + 105.645874023000033, + 12.977478027000075 + ], + [ + 105.643676758000083, + 12.980285645000038 + ], + [ + 105.642517090000069, + 12.984313965000069 + ], + [ + 105.643127441000047, + 12.987487793000071 + ], + [ + 105.644897461000085, + 12.990478516000053 + ], + [ + 105.646728516000053, + 12.993896484000061 + ], + [ + 105.648925781000059, + 12.997680664000029 + ], + [ + 105.649902344000054, + 13.003112793000071 + ], + [ + 105.649475098000039, + 13.00671386700003 + ], + [ + 105.648071289000086, + 13.009887695000032 + ], + [ + 105.646728516000053, + 13.013122559000067 + ], + [ + 105.645080566000047, + 13.017700195000032 + ], + [ + 105.644287109000061, + 13.021484375000057 + ], + [ + 105.643493652000075, + 13.02429199200003 + ], + [ + 105.642700195000089, + 13.027709961000028 + ], + [ + 105.641723633000083, + 13.031311035000044 + ], + [ + 105.640319824000073, + 13.034912109000061 + ], + [ + 105.639282227000081, + 13.038085937000062 + ], + [ + 105.638305664000086, + 13.040893555000025 + ], + [ + 105.637084961000085, + 13.043884277000075 + ], + [ + 105.635681152000075, + 13.047485352000024 + ], + [ + 105.634277344000054, + 13.052307129000042 + ], + [ + 105.631713867000087, + 13.058471680000025 + ], + [ + 105.633483887000068, + 13.063293457000043 + ], + [ + 105.636108398000033, + 13.06671142600004 + ], + [ + 105.636901855000076, + 13.069519043000071 + ], + [ + 105.637329102000081, + 13.072875977000024 + ], + [ + 105.638488770000038, + 13.076110840000069 + ], + [ + 105.640319824000073, + 13.079284668000071 + ], + [ + 105.64093017600004, + 13.08428955100004 + ], + [ + 105.642517090000069, + 13.088500977000024 + ], + [ + 105.644470215000069, + 13.092285156000059 + ], + [ + 105.646118164000086, + 13.096923828000058 + ], + [ + 105.646728516000053, + 13.100708008000026 + ], + [ + 105.647888184000067, + 13.105102539000029 + ], + [ + 105.647888184000067, + 13.108703613000046 + ], + [ + 105.647094727000081, + 13.113281250000057 + ], + [ + 105.644104004000042, + 13.115905762000068 + ], + [ + 105.641479492000087, + 13.11749267600004 + ], + [ + 105.639526367000087, + 13.119689941000047 + ], + [ + 105.638916016000053, + 13.122497559000067 + ], + [ + 105.638122559000067, + 13.125671387000068 + ], + [ + 105.636474609000061, + 13.128723145000038 + ], + [ + 105.63311767600004, + 13.130920410000044 + ], + [ + 105.629272461000085, + 13.13171386700003 + ], + [ + 105.626098633000083, + 13.133911133000026 + ], + [ + 105.623107910000044, + 13.135498047000056 + ], + [ + 105.620910645000038, + 13.137695312000062 + ], + [ + 105.617126465000069, + 13.139892578000058 + ], + [ + 105.613525391000053, + 13.142517090000069 + ], + [ + 105.612670898000033, + 13.146301270000038 + ], + [ + 105.610900879000042, + 13.149719238000046 + ], + [ + 105.608093262000068, + 13.151123047000056 + ], + [ + 105.604919434000067, + 13.152526855000076 + ], + [ + 105.603698730000076, + 13.155517578000058 + ], + [ + 105.602478027000075, + 13.159118652000075 + ], + [ + 105.601684570000089, + 13.163085937000062 + ], + [ + 105.601684570000089, + 13.167480469000054 + ], + [ + 105.601501465000069, + 13.172485352000024 + ], + [ + 105.600280762000068, + 13.178710937000062 + ], + [ + 105.598876953000058, + 13.183715820000032 + ], + [ + 105.597717285000044, + 13.187927246000072 + ], + [ + 105.596130371000072, + 13.19171142600004 + ], + [ + 105.594482422000056, + 13.195922852000024 + ], + [ + 105.592529297000056, + 13.200317383000026 + ], + [ + 105.590881348000039, + 13.203491211000028 + ], + [ + 105.589111328000058, + 13.207275391000053 + ], + [ + 105.587707520000038, + 13.212524414000029 + ], + [ + 105.587280273000033, + 13.216491699000073 + ], + [ + 105.587707520000038, + 13.220520020000038 + ], + [ + 105.587890625000057, + 13.224304199000073 + ], + [ + 105.588500977000081, + 13.227111816000047 + ], + [ + 105.589294434000067, + 13.230102539000029 + ], + [ + 105.593688965000069, + 13.230712891000053 + ], + [ + 105.598083496000072, + 13.230712891000053 + ], + [ + 105.602111816000047, + 13.230712891000053 + ], + [ + 105.608520508000083, + 13.229125977000024 + ], + [ + 105.612670898000033, + 13.225524902000075 + ], + [ + 105.615112305000082, + 13.222900391000053 + ], + [ + 105.617675781000059, + 13.221130371000072 + ], + [ + 105.621093750000057, + 13.219909668000071 + ], + [ + 105.624694824000073, + 13.218688965000069 + ], + [ + 105.627929687000062, + 13.218078613000046 + ], + [ + 105.631286621000072, + 13.217285156000059 + ], + [ + 105.634704590000069, + 13.216491699000073 + ], + [ + 105.638916016000053, + 13.21569824200003 + ], + [ + 105.641906738000046, + 13.214721680000025 + ], + [ + 105.645874023000033, + 13.213317871000072 + ], + [ + 105.649902344000054, + 13.211914062000062 + ], + [ + 105.653503418000071, + 13.209472656000059 + ], + [ + 105.656677246000072, + 13.207702637000068 + ], + [ + 105.659301758000083, + 13.206481934000067 + ], + [ + 105.662475586000085, + 13.205688477000024 + ], + [ + 105.665527344000054, + 13.205505371000072 + ], + [ + 105.669311523000033, + 13.205688477000024 + ], + [ + 105.672302246000072, + 13.206115723000039 + ], + [ + 105.675476074000073, + 13.206481934000067 + ], + [ + 105.679321289000086, + 13.207092285000044 + ], + [ + 105.683105469000054, + 13.207275391000053 + ], + [ + 105.686279297000056, + 13.207702637000068 + ], + [ + 105.690673828000058, + 13.207519531000059 + ], + [ + 105.695129395000038, + 13.206481934000067 + ], + [ + 105.697875977000081, + 13.205078125000057 + ], + [ + 105.700683594000054, + 13.203918457000043 + ], + [ + 105.703918457000043, + 13.202514648000033 + ], + [ + 105.706726074000073, + 13.200927734000061 + ], + [ + 105.710327148000033, + 13.198913574000073 + ], + [ + 105.713073730000076, + 13.197326660000044 + ], + [ + 105.716125488000046, + 13.195678711000028 + ], + [ + 105.719116211000085, + 13.194091797000056 + ], + [ + 105.721679687000062, + 13.192504883000026 + ], + [ + 105.72491455100004, + 13.190673828000058 + ], + [ + 105.727722168000071, + 13.189086914000029 + ], + [ + 105.731323242000087, + 13.187072754000042 + ], + [ + 105.735107422000056, + 13.185119629000042 + ], + [ + 105.74249267600004, + 13.183288574000073 + ], + [ + 105.746276855000076, + 13.180297852000024 + ], + [ + 105.748901367000087, + 13.178527832000043 + ], + [ + 105.751708984000061, + 13.17608642600004 + ], + [ + 105.752075195000089, + 13.17272949200003 + ], + [ + 105.754089355000076, + 13.169311523000033 + ], + [ + 105.757507324000073, + 13.166503906000059 + ], + [ + 105.76007080100004, + 13.165100098000039 + ], + [ + 105.764709473000039, + 13.161926270000038 + ], + [ + 105.771118164000086, + 13.157287598000039 + ], + [ + 105.784484863000046, + 13.147521973000039 + ], + [ + 105.789123535000044, + 13.145507812000062 + ], + [ + 105.791870117000087, + 13.142700195000032 + ], + [ + 105.793518066000047, + 13.139282227000024 + ], + [ + 105.795288086000085, + 13.136291504000042 + ], + [ + 105.797912598000039, + 13.134277344000054 + ], + [ + 105.80108642600004, + 13.132324219000054 + ], + [ + 105.804321289000086, + 13.131286621000072 + ], + [ + 105.807128906000059, + 13.129699707000043 + ], + [ + 105.810913086000085, + 13.127929687000062 + ], + [ + 105.814697266000053, + 13.128112793000071 + ], + [ + 105.817871094000054, + 13.128112793000071 + ], + [ + 105.821472168000071, + 13.126708984000061 + ], + [ + 105.827270508000083, + 13.125671387000068 + ], + [ + 105.831909180000082, + 13.123718262000068 + ], + [ + 105.835327148000033, + 13.123291016000053 + ], + [ + 105.838073730000076, + 13.121887207000043 + ], + [ + 105.840698242000087, + 13.120300293000071 + ], + [ + 105.843322754000042, + 13.119079590000069 + ], + [ + 105.846923828000058, + 13.11749267600004 + ], + [ + 105.84991455100004, + 13.116516113000046 + ], + [ + 105.852905273000033, + 13.114929199000073 + ], + [ + 105.857299805000082, + 13.114074707000043 + ], + [ + 105.863525391000053, + 13.114074707000043 + ], + [ + 105.866271973000039, + 13.115112305000025 + ], + [ + 105.867919922000056, + 13.117675781000059 + ], + [ + 105.872070312000062, + 13.11608886700003 + ], + [ + 105.875671387000068, + 13.116882324000073 + ], + [ + 105.878112793000071, + 13.118896484000061 + ], + [ + 105.880676270000038, + 13.120727539000029 + ], + [ + 105.884704590000069, + 13.120910645000038 + ], + [ + 105.887329102000081, + 13.123291016000053 + ], + [ + 105.889892578000058, + 13.124877930000025 + ], + [ + 105.893127441000047, + 13.127319336000028 + ], + [ + 105.896301270000038, + 13.128479004000042 + ], + [ + 105.897705078000058, + 13.131286621000072 + ], + [ + 105.901306152000075, + 13.133300781000059 + ], + [ + 105.905273437000062, + 13.136901855000076 + ], + [ + 105.909118652000075, + 13.137329102000024 + ], + [ + 105.912902832000043, + 13.136108398000033 + ], + [ + 105.91632080100004, + 13.138122559000067 + ], + [ + 105.919921875000057, + 13.139709473000039 + ], + [ + 105.923706055000082, + 13.140319824000073 + ], + [ + 105.927673340000069, + 13.141113281000059 + ], + [ + 105.929504395000038, + 13.143676758000026 + ], + [ + 105.932128906000059, + 13.145874023000033 + ], + [ + 105.935485840000069, + 13.147277832000043 + ], + [ + 105.938110352000081, + 13.149108887000068 + ], + [ + 105.942077637000068, + 13.149902344000054 + ], + [ + 105.945312500000057, + 13.152099609000061 + ], + [ + 105.944274902000075, + 13.156494141000053 + ], + [ + 105.943908691000047, + 13.159484863000046 + ], + [ + 105.946105957000043, + 13.161499023000033 + ], + [ + 105.946899414000086, + 13.165100098000039 + ], + [ + 105.948303223000039, + 13.168518066000047 + ], + [ + 105.951721191000047, + 13.170898437000062 + ], + [ + 105.954101562000062, + 13.175292969000054 + ], + [ + 105.957519531000059, + 13.179504395000038 + ], + [ + 105.960693359000061, + 13.185485840000069 + ], + [ + 105.961486816000047, + 13.19030761700003 + ], + [ + 105.963500977000081, + 13.193115234000061 + ], + [ + 105.965270996000072, + 13.196289062000062 + ], + [ + 105.965515137000068, + 13.200500488000046 + ], + [ + 105.965270996000072, + 13.203918457000043 + ], + [ + 105.964477539000086, + 13.208496094000054 + ], + [ + 105.964477539000086, + 13.213500977000024 + ], + [ + 105.964477539000086, + 13.218505859000061 + ], + [ + 105.965087891000053, + 13.223083496000072 + ], + [ + 105.965515137000068, + 13.226318359000061 + ], + [ + 105.967529297000056, + 13.231689453000058 + ], + [ + 105.973083496000072, + 13.230102539000029 + ], + [ + 105.978515625000057, + 13.228698730000076 + ], + [ + 105.982910156000059, + 13.227294922000056 + ], + [ + 105.986328125000057, + 13.225524902000075 + ], + [ + 105.989318848000039, + 13.223876953000058 + ], + [ + 105.994079590000069, + 13.220703125000057 + ], + [ + 105.997314453000058, + 13.218322754000042 + ], + [ + 106.000671387000068, + 13.215881348000039 + ], + [ + 106.005676270000038, + 13.215087891000053 + ], + [ + 106.009704590000069, + 13.217712402000075 + ], + [ + 106.012695312000062, + 13.219909668000071 + ], + [ + 106.015075684000067, + 13.221923828000058 + ], + [ + 106.018310547000056, + 13.223083496000072 + ], + [ + 106.022521973000039, + 13.225891113000046 + ], + [ + 106.024475098000039, + 13.230285645000038 + ], + [ + 106.02569580100004, + 13.233703613000046 + ], + [ + 106.025512695000089, + 13.238891602000024 + ], + [ + 106.026123047000056, + 13.243286133000026 + ], + [ + 106.025512695000089, + 13.247314453000058 + ], + [ + 106.023925781000059, + 13.250915527000075 + ], + [ + 106.02569580100004, + 13.255126953000058 + ], + [ + 106.025512695000089, + 13.259094238000046 + ], + [ + 106.028076172000056, + 13.262695312000062 + ], + [ + 106.030517578000058, + 13.265686035000044 + ], + [ + 106.032714844000054, + 13.269287109000061 + ], + [ + 106.033691406000059, + 13.272705078000058 + ], + [ + 106.036315918000071, + 13.27569580100004 + ], + [ + 106.039306641000053, + 13.279479980000076 + ], + [ + 106.044128418000071, + 13.28210449200003 + ], + [ + 106.047302246000072, + 13.285888672000056 + ], + [ + 106.047119141000053, + 13.28991699200003 + ], + [ + 106.048889160000044, + 13.294311523000033 + ], + [ + 106.052673340000069, + 13.296081543000071 + ], + [ + 106.055908203000058, + 13.296081543000071 + ], + [ + 106.058288574000073, + 13.297912598000039 + ], + [ + 106.059082031000059, + 13.302124023000033 + ], + [ + 106.059326172000056, + 13.306518555000025 + ], + [ + 106.061889648000033, + 13.310302734000061 + ], + [ + 106.066528320000089, + 13.311889648000033 + ], + [ + 106.070129395000038, + 13.314514160000044 + ], + [ + 106.071716309000067, + 13.318725586000028 + ], + [ + 106.073486328000058, + 13.323913574000073 + ], + [ + 106.076293945000089, + 13.327697754000042 + ], + [ + 106.077697754000042, + 13.331298828000058 + ], + [ + 106.081298828000058, + 13.333923340000069 + ], + [ + 106.085083008000083, + 13.335693359000061 + ], + [ + 106.086303711000085, + 13.339111328000058 + ], + [ + 106.085876465000069, + 13.342285156000059 + ], + [ + 106.084716797000056, + 13.345275879000042 + ], + [ + 106.082885742000087, + 13.348327637000068 + ], + [ + 106.082519531000059, + 13.351318359000061 + ], + [ + 106.085876465000069, + 13.353698730000076 + ], + [ + 106.091125488000046, + 13.355895996000072 + ], + [ + 106.093872070000089, + 13.357116699000073 + ], + [ + 106.096313477000081, + 13.358886719000054 + ], + [ + 106.100097656000059, + 13.359924316000047 + ], + [ + 106.104125977000081, + 13.363525391000053 + ], + [ + 106.107116699000073, + 13.363891602000024 + ], + [ + 106.109313965000069, + 13.365722656000059 + ], + [ + 106.113281250000057, + 13.36608886700003 + ], + [ + 106.116699219000054, + 13.367309570000032 + ], + [ + 106.121704102000081, + 13.367309570000032 + ], + [ + 106.126892090000069, + 13.365905762000068 + ], + [ + 106.130920410000044, + 13.365905762000068 + ], + [ + 106.132873535000044, + 13.369323730000076 + ], + [ + 106.135925293000071, + 13.368713379000042 + ], + [ + 106.140319824000073, + 13.367126465000069 + ], + [ + 106.144104004000042, + 13.36608886700003 + ], + [ + 106.147521973000039, + 13.365112305000025 + ], + [ + 106.151489258000083, + 13.365112305000025 + ], + [ + 106.154296875000057, + 13.365905762000068 + ], + [ + 106.157470703000058, + 13.368286133000026 + ], + [ + 106.161071777000075, + 13.367919922000056 + ], + [ + 106.164489746000072, + 13.369506836000028 + ], + [ + 106.168090820000089, + 13.368713379000042 + ], + [ + 106.172485352000081, + 13.368103027000075 + ], + [ + 106.176879883000083, + 13.367126465000069 + ], + [ + 106.180480957000043, + 13.366516113000046 + ], + [ + 106.184082031000059, + 13.367309570000032 + ], + [ + 106.187927246000072, + 13.36749267600004 + ], + [ + 106.19171142600004, + 13.366271973000039 + ], + [ + 106.194519043000071, + 13.365112305000025 + ], + [ + 106.197082520000038, + 13.363098145000038 + ], + [ + 106.199890137000068, + 13.361877441000047 + ], + [ + 106.202880859000061, + 13.360473633000026 + ], + [ + 106.207885742000087, + 13.362487793000071 + ], + [ + 106.213317871000072, + 13.361511230000076 + ], + [ + 106.217712402000075, + 13.360473633000026 + ], + [ + 106.221313477000081, + 13.360900879000042 + ], + [ + 106.225524902000075, + 13.362670898000033 + ], + [ + 106.236511230000076, + 13.367919922000056 + ], + [ + 106.238891602000081, + 13.369689941000047 + ], + [ + 106.239318848000039, + 13.374328613000046 + ], + [ + 106.239074707000043, + 13.379272461000028 + ], + [ + 106.239501953000058, + 13.383300781000059 + ], + [ + 106.241088867000087, + 13.387878418000071 + ], + [ + 106.243530273000033, + 13.39093017600004 + ], + [ + 106.245483398000033, + 13.393493652000075 + ], + [ + 106.253723145000038, + 13.392089844000054 + ], + [ + 106.26007080100004, + 13.398071289000029 + ], + [ + 106.266479492000087, + 13.405517578000058 + ], + [ + 106.269714355000076, + 13.403930664000029 + ], + [ + 106.273925781000059, + 13.403686523000033 + ], + [ + 106.278320312000062, + 13.403076172000056 + ], + [ + 106.281921387000068, + 13.401916504000042 + ], + [ + 106.285095215000069, + 13.402526855000076 + ], + [ + 106.289306641000053, + 13.403076172000056 + ], + [ + 106.292297363000046, + 13.401489258000026 + ], + [ + 106.297302246000072, + 13.400085449000073 + ], + [ + 106.299316406000059, + 13.404113770000038 + ], + [ + 106.302490234000061, + 13.406494141000053 + ], + [ + 106.306274414000086, + 13.40710449200003 + ], + [ + 106.309082031000059, + 13.405273437000062 + ], + [ + 106.3125, + 13.403686523000033 + ], + [ + 106.316101074000073, + 13.402099609000061 + ], + [ + 106.321289062000062, + 13.40069580100004 + ], + [ + 106.324890137000068, + 13.400329590000069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 5.9062017632500003, + "Shape_Area": 1.1374529227100001, + "ADM1_EN": "Mondul Kiri", + "ADM1_PCODE": "KH11", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 106.520080566000047, + 13.351501465000069 + ], + [ + 106.524291992000087, + 13.349304199000073 + ], + [ + 106.527282715000069, + 13.349304199000073 + ], + [ + 106.530517578000058, + 13.348876953000058 + ], + [ + 106.533874512000068, + 13.348083496000072 + ], + [ + 106.538696289000086, + 13.348876953000058 + ], + [ + 106.541687012000068, + 13.349670410000044 + ], + [ + 106.545104980000076, + 13.350708008000026 + ], + [ + 106.549682617000087, + 13.350708008000026 + ], + [ + 106.553283691000047, + 13.351074219000054 + ], + [ + 106.558105469000054, + 13.350524902000075 + ], + [ + 106.560913086000085, + 13.347473145000038 + ], + [ + 106.563720703000058, + 13.344726562000062 + ], + [ + 106.566528320000089, + 13.34210205100004 + ], + [ + 106.568481445000089, + 13.339904785000044 + ], + [ + 106.570678711000085, + 13.337890625000057 + ], + [ + 106.573303223000039, + 13.334716797000056 + ], + [ + 106.577514648000033, + 13.333129883000026 + ], + [ + 106.581909180000082, + 13.332092285000044 + ], + [ + 106.585510254000042, + 13.329895020000038 + ], + [ + 106.589477539000086, + 13.327880859000061 + ], + [ + 106.592895508000083, + 13.325500488000046 + ], + [ + 106.595886230000076, + 13.32312011700003 + ], + [ + 106.598510742000087, + 13.320922852000024 + ], + [ + 106.600891113000046, + 13.319091797000056 + ], + [ + 106.604492187000062, + 13.319702148000033 + ], + [ + 106.608093262000068, + 13.322875977000024 + ], + [ + 106.633728027000075, + 13.305480957000043 + ], + [ + 106.665527344000054, + 13.28350830100004 + ], + [ + 106.711730957000043, + 13.251892090000069 + ], + [ + 106.718505859000061, + 13.247070312000062 + ], + [ + 106.745910645000038, + 13.227478027000075 + ], + [ + 106.776306152000075, + 13.19952392600004 + ], + [ + 106.779296875000057, + 13.197875977000024 + ], + [ + 106.784118652000075, + 13.197692871000072 + ], + [ + 106.788330078000058, + 13.196899414000029 + ], + [ + 106.792480469000054, + 13.196105957000043 + ], + [ + 106.796691895000038, + 13.195312500000057 + ], + [ + 106.800903320000089, + 13.194091797000056 + ], + [ + 106.804077148000033, + 13.193115234000061 + ], + [ + 106.831909180000082, + 13.185302734000061 + ], + [ + 106.835327148000033, + 13.182922363000046 + ], + [ + 106.843688965000069, + 13.180725098000039 + ], + [ + 106.848876953000058, + 13.179687500000057 + ], + [ + 106.860717773000033, + 13.175903320000032 + ], + [ + 106.863525391000053, + 13.175109863000046 + ], + [ + 106.866882324000073, + 13.17468261700003 + ], + [ + 106.873718262000068, + 13.174316406000059 + ], + [ + 106.876708984000061, + 13.17468261700003 + ], + [ + 106.880920410000044, + 13.175109863000046 + ], + [ + 106.884521484000061, + 13.175720215000069 + ], + [ + 106.889526367000087, + 13.17608642600004 + ], + [ + 106.894287109000061, + 13.175476074000073 + ], + [ + 106.898498535000044, + 13.175109863000046 + ], + [ + 106.902709961000085, + 13.176879883000026 + ], + [ + 106.906677246000072, + 13.178710937000062 + ], + [ + 106.911682129000042, + 13.178710937000062 + ], + [ + 106.915893555000082, + 13.178527832000043 + ], + [ + 106.919311523000033, + 13.176696777000075 + ], + [ + 106.923522949000073, + 13.175476074000073 + ], + [ + 106.926696777000075, + 13.174499512000068 + ], + [ + 106.930480957000043, + 13.174926758000026 + ], + [ + 106.93389892600004, + 13.173889160000044 + ], + [ + 106.936889648000033, + 13.174316406000059 + ], + [ + 106.940673828000058, + 13.175292969000054 + ], + [ + 106.943725586000085, + 13.176696777000075 + ], + [ + 106.947875977000081, + 13.177307129000042 + ], + [ + 106.953918457000043, + 13.177917480000076 + ], + [ + 106.958312988000046, + 13.180297852000024 + ], + [ + 106.960327148000033, + 13.18249511700003 + ], + [ + 106.963317871000072, + 13.18389892600004 + ], + [ + 106.966918945000089, + 13.182922363000046 + ], + [ + 106.971130371000072, + 13.18249511700003 + ], + [ + 106.974670410000044, + 13.181518555000025 + ], + [ + 106.977478027000075, + 13.179504395000038 + ], + [ + 106.980285645000038, + 13.177917480000076 + ], + [ + 106.983703613000046, + 13.179321289000029 + ], + [ + 106.986694336000085, + 13.180725098000039 + ], + [ + 106.990112305000082, + 13.181274414000029 + ], + [ + 106.993103027000075, + 13.182312012000068 + ], + [ + 106.996887207000043, + 13.184509277000075 + ], + [ + 107.001525879000042, + 13.185913086000028 + ], + [ + 107.005126953000058, + 13.187683105000076 + ], + [ + 107.008911133000083, + 13.187072754000042 + ], + [ + 107.012329102000081, + 13.185913086000028 + ], + [ + 107.015319824000073, + 13.184509277000075 + ], + [ + 107.019470215000069, + 13.186096191000047 + ], + [ + 107.023925781000059, + 13.186706543000071 + ], + [ + 107.027709961000085, + 13.185913086000028 + ], + [ + 107.030883789000086, + 13.185119629000042 + ], + [ + 107.032287598000039, + 13.182312012000068 + ], + [ + 107.034912109000061, + 13.180908203000058 + ], + [ + 107.036499023000033, + 13.178100586000028 + ], + [ + 107.037292480000076, + 13.174072266000053 + ], + [ + 107.040893555000082, + 13.172912598000039 + ], + [ + 107.044677734000061, + 13.173095703000058 + ], + [ + 107.048706055000082, + 13.173706055000025 + ], + [ + 107.051879883000083, + 13.177490234000061 + ], + [ + 107.055297852000081, + 13.180480957000043 + ], + [ + 107.059509277000075, + 13.182128906000059 + ], + [ + 107.060302734000061, + 13.185119629000042 + ], + [ + 107.062683105000076, + 13.187683105000076 + ], + [ + 107.063903809000067, + 13.190490723000039 + ], + [ + 107.06671142600004, + 13.192687988000046 + ], + [ + 107.069274902000075, + 13.194885254000042 + ], + [ + 107.072509766000053, + 13.194091797000056 + ], + [ + 107.074890137000068, + 13.195922852000024 + ], + [ + 107.075683594000054, + 13.198913574000073 + ], + [ + 107.078918457000043, + 13.19952392600004 + ], + [ + 107.081115723000039, + 13.202270508000026 + ], + [ + 107.083679199000073, + 13.205322266000053 + ], + [ + 107.082092285000044, + 13.209716797000056 + ], + [ + 107.083923340000069, + 13.212524414000029 + ], + [ + 107.082885742000087, + 13.215515137000068 + ], + [ + 107.082519531000059, + 13.218872070000032 + ], + [ + 107.084716797000056, + 13.223083496000072 + ], + [ + 107.084899902000075, + 13.226928711000028 + ], + [ + 107.083496094000054, + 13.230102539000029 + ], + [ + 107.087097168000071, + 13.232299805000025 + ], + [ + 107.089111328000058, + 13.235107422000056 + ], + [ + 107.086914062000062, + 13.237304687000062 + ], + [ + 107.089904785000044, + 13.238281250000057 + ], + [ + 107.093078613000046, + 13.240905762000068 + ], + [ + 107.093078613000046, + 13.244506836000028 + ], + [ + 107.091125488000046, + 13.248474121000072 + ], + [ + 107.087280273000033, + 13.252319336000028 + ], + [ + 107.090515137000068, + 13.255310059000067 + ], + [ + 107.087707520000038, + 13.259277344000054 + ], + [ + 107.089111328000058, + 13.262878418000071 + ], + [ + 107.088684082000043, + 13.26593017600004 + ], + [ + 107.089904785000044, + 13.270324707000043 + ], + [ + 107.089111328000058, + 13.27429199200003 + ], + [ + 107.086486816000047, + 13.276489258000026 + ], + [ + 107.081726074000073, + 13.279296875000057 + ], + [ + 107.080688477000081, + 13.283081055000025 + ], + [ + 107.081298828000058, + 13.288085937000062 + ], + [ + 107.077270508000083, + 13.290283203000058 + ], + [ + 107.07452392600004, + 13.294311523000033 + ], + [ + 107.077697754000042, + 13.294494629000042 + ], + [ + 107.075927734000061, + 13.297912598000039 + ], + [ + 107.071289062000062, + 13.299499512000068 + ], + [ + 107.075073242000087, + 13.302307129000042 + ], + [ + 107.072875977000081, + 13.305114746000072 + ], + [ + 107.070312500000057, + 13.307922363000046 + ], + [ + 107.070495605000076, + 13.311096191000047 + ], + [ + 107.075073242000087, + 13.311706543000071 + ], + [ + 107.078491211000085, + 13.313720703000058 + ], + [ + 107.075927734000061, + 13.317321777000075 + ], + [ + 107.078491211000085, + 13.321105957000043 + ], + [ + 107.082092285000044, + 13.317871094000054 + ], + [ + 107.083923340000069, + 13.31530761700003 + ], + [ + 107.087280273000033, + 13.312683105000076 + ], + [ + 107.090698242000087, + 13.310485840000069 + ], + [ + 107.094299316000047, + 13.309082031000059 + ], + [ + 107.098876953000058, + 13.308105469000054 + ], + [ + 107.102478027000075, + 13.308105469000054 + ], + [ + 107.106506348000039, + 13.308471680000025 + ], + [ + 107.110900879000042, + 13.309692383000026 + ], + [ + 107.114685059000067, + 13.311279297000056 + ], + [ + 107.117309570000089, + 13.3125 + ], + [ + 107.120910645000038, + 13.314086914000029 + ], + [ + 107.123901367000087, + 13.316101074000073 + ], + [ + 107.125671387000068, + 13.318908691000047 + ], + [ + 107.127685547000056, + 13.322082520000038 + ], + [ + 107.129089355000076, + 13.324707031000059 + ], + [ + 107.131286621000072, + 13.327270508000026 + ], + [ + 107.133483887000068, + 13.329895020000038 + ], + [ + 107.136901855000076, + 13.330871582000043 + ], + [ + 107.141479492000087, + 13.331115723000039 + ], + [ + 107.145690918000071, + 13.330871582000043 + ], + [ + 107.149719238000046, + 13.328918457000043 + ], + [ + 107.153503418000071, + 13.326904297000056 + ], + [ + 107.157470703000058, + 13.323730469000054 + ], + [ + 107.15850830100004, + 13.319091797000056 + ], + [ + 107.158691406000059, + 13.314880371000072 + ], + [ + 107.159301758000083, + 13.311889648000033 + ], + [ + 107.162475586000085, + 13.309082031000059 + ], + [ + 107.165710449000073, + 13.30749511700003 + ], + [ + 107.168518066000047, + 13.306518555000025 + ], + [ + 107.172485352000081, + 13.306274414000029 + ], + [ + 107.176879883000083, + 13.306701660000044 + ], + [ + 107.179870605000076, + 13.306884766000053 + ], + [ + 107.184875488000046, + 13.307678223000039 + ], + [ + 107.189697266000053, + 13.307922363000046 + ], + [ + 107.194091797000056, + 13.310119629000042 + ], + [ + 107.198303223000039, + 13.312683105000076 + ], + [ + 107.202880859000061, + 13.315124512000068 + ], + [ + 107.206481934000067, + 13.316528320000032 + ], + [ + 107.210083008000083, + 13.318298340000069 + ], + [ + 107.213500977000081, + 13.321472168000071 + ], + [ + 107.214111328000058, + 13.325500488000046 + ], + [ + 107.216674805000082, + 13.329101562000062 + ], + [ + 107.219726562000062, + 13.331481934000067 + ], + [ + 107.222900391000053, + 13.332519531000059 + ], + [ + 107.227111816000047, + 13.333496094000054 + ], + [ + 107.231689453000058, + 13.334899902000075 + ], + [ + 107.23468017600004, + 13.336730957000043 + ], + [ + 107.236877441000047, + 13.340881348000039 + ], + [ + 107.237487793000071, + 13.345886230000076 + ], + [ + 107.236511230000076, + 13.350097656000059 + ], + [ + 107.235290527000075, + 13.354309082000043 + ], + [ + 107.235107422000056, + 13.357482910000044 + ], + [ + 107.236083984000061, + 13.360473633000026 + ], + [ + 107.237670898000033, + 13.363098145000038 + ], + [ + 107.240295410000044, + 13.36608886700003 + ], + [ + 107.243286133000083, + 13.367309570000032 + ], + [ + 107.246520996000072, + 13.367309570000032 + ], + [ + 107.249328613000046, + 13.366516113000046 + ], + [ + 107.252075195000089, + 13.365478516000053 + ], + [ + 107.255676270000038, + 13.363891602000024 + ], + [ + 107.259887695000089, + 13.362670898000033 + ], + [ + 107.263671875000057, + 13.362304687000062 + ], + [ + 107.267089844000054, + 13.360717773000033 + ], + [ + 107.269714355000076, + 13.358703613000046 + ], + [ + 107.271118164000086, + 13.356079102000024 + ], + [ + 107.272705078000058, + 13.353271484000061 + ], + [ + 107.274719238000046, + 13.349487305000025 + ], + [ + 107.276489258000083, + 13.345886230000076 + ], + [ + 107.278076172000056, + 13.34210205100004 + ], + [ + 107.279296875000057, + 13.339111328000058 + ], + [ + 107.280883789000086, + 13.334106445000032 + ], + [ + 107.283081055000082, + 13.328674316000047 + ], + [ + 107.285278320000089, + 13.323486328000058 + ], + [ + 107.287109375000057, + 13.318908691000047 + ], + [ + 107.288085937000062, + 13.316101074000073 + ], + [ + 107.289489746000072, + 13.312927246000072 + ], + [ + 107.291076660000044, + 13.310119629000042 + ], + [ + 107.293701172000056, + 13.308715820000032 + ], + [ + 107.298522949000073, + 13.307922363000046 + ], + [ + 107.302307129000042, + 13.307312012000068 + ], + [ + 107.305114746000072, + 13.307922363000046 + ], + [ + 107.309692383000083, + 13.309082031000059 + ], + [ + 107.313476562000062, + 13.312316895000038 + ], + [ + 107.318298340000069, + 13.315490723000039 + ], + [ + 107.323730469000054, + 13.315917969000054 + ], + [ + 107.329284668000071, + 13.315673828000058 + ], + [ + 107.334716797000056, + 13.316101074000073 + ], + [ + 107.338500977000081, + 13.316101074000073 + ], + [ + 107.340270996000072, + 13.313476562000062 + ], + [ + 107.342529297000056, + 13.310485840000069 + ], + [ + 107.344299316000047, + 13.307312012000068 + ], + [ + 107.346923828000058, + 13.303894043000071 + ], + [ + 107.34991455100004, + 13.301879883000026 + ], + [ + 107.353088379000042, + 13.299499512000068 + ], + [ + 107.356506348000039, + 13.296691895000038 + ], + [ + 107.358093262000068, + 13.293090820000032 + ], + [ + 107.359130859000061, + 13.289489746000072 + ], + [ + 107.360473633000083, + 13.286926270000038 + ], + [ + 107.363098145000038, + 13.283325195000032 + ], + [ + 107.366088867000087, + 13.279724121000072 + ], + [ + 107.370300293000071, + 13.277099609000061 + ], + [ + 107.375122070000089, + 13.279113770000038 + ], + [ + 107.378723145000038, + 13.280700684000067 + ], + [ + 107.381530762000068, + 13.281921387000068 + ], + [ + 107.384887695000089, + 13.281921387000068 + ], + [ + 107.389526367000087, + 13.280517578000058 + ], + [ + 107.392700195000089, + 13.283081055000025 + ], + [ + 107.39288330100004, + 13.286682129000042 + ], + [ + 107.395690918000071, + 13.288085937000062 + ], + [ + 107.399108887000068, + 13.286926270000038 + ], + [ + 107.402282715000069, + 13.285522461000028 + ], + [ + 107.405273437000062, + 13.286682129000042 + ], + [ + 107.405090332000043, + 13.290527344000054 + ], + [ + 107.403503418000071, + 13.293884277000075 + ], + [ + 107.402893066000047, + 13.297119141000053 + ], + [ + 107.405883789000086, + 13.298278809000067 + ], + [ + 107.408874512000068, + 13.299072266000053 + ], + [ + 107.412292480000076, + 13.302307129000042 + ], + [ + 107.415283203000058, + 13.304687500000057 + ], + [ + 107.41827392600004, + 13.306274414000029 + ], + [ + 107.421081543000071, + 13.307312012000068 + ], + [ + 107.424682617000087, + 13.308715820000032 + ], + [ + 107.428283691000047, + 13.309692383000026 + ], + [ + 107.432495117000087, + 13.310485840000069 + ], + [ + 107.435302734000061, + 13.311279297000056 + ], + [ + 107.438293457000043, + 13.312072754000042 + ], + [ + 107.442687988000046, + 13.314514160000044 + ], + [ + 107.444519043000071, + 13.319274902000075 + ], + [ + 107.448486328000058, + 13.320922852000024 + ], + [ + 107.452270508000083, + 13.319091797000056 + ], + [ + 107.455322266000053, + 13.319091797000056 + ], + [ + 107.455688477000081, + 13.32452392600004 + ], + [ + 107.456298828000058, + 13.327697754000042 + ], + [ + 107.457885742000087, + 13.330871582000043 + ], + [ + 107.462280273000033, + 13.333923340000069 + ], + [ + 107.467285156000059, + 13.334472656000059 + ], + [ + 107.470703125000057, + 13.331481934000067 + ], + [ + 107.472473145000038, + 13.328491211000028 + ], + [ + 107.474670410000044, + 13.325683594000054 + ], + [ + 107.477111816000047, + 13.322509766000053 + ], + [ + 107.479919434000067, + 13.318908691000047 + ], + [ + 107.483093262000068, + 13.31530761700003 + ], + [ + 107.485473633000083, + 13.3125 + ], + [ + 107.486694336000085, + 13.309875488000046 + ], + [ + 107.488891602000081, + 13.306701660000044 + ], + [ + 107.491882324000073, + 13.305114746000072 + ], + [ + 107.495117187000062, + 13.301513672000056 + ], + [ + 107.496887207000043, + 13.297302246000072 + ], + [ + 107.500671387000068, + 13.296691895000038 + ], + [ + 107.503906250000057, + 13.299499512000068 + ], + [ + 107.507324219000054, + 13.302490234000061 + ], + [ + 107.511108398000033, + 13.301696777000075 + ], + [ + 107.512878418000071, + 13.298522949000073 + ], + [ + 107.516723633000083, + 13.295715332000043 + ], + [ + 107.520690918000071, + 13.296691895000038 + ], + [ + 107.524108887000068, + 13.297485352000024 + ], + [ + 107.528503418000071, + 13.298706055000025 + ], + [ + 107.532897949000073, + 13.29968261700003 + ], + [ + 107.536315918000071, + 13.298095703000058 + ], + [ + 107.539916992000087, + 13.296325684000067 + ], + [ + 107.542907715000069, + 13.294677734000061 + ], + [ + 107.545715332000043, + 13.294128418000071 + ], + [ + 107.549682617000087, + 13.293518066000047 + ], + [ + 107.553283691000047, + 13.290710449000073 + ], + [ + 107.556091309000067, + 13.287292480000076 + ], + [ + 107.560729980000076, + 13.285522461000028 + ], + [ + 107.564880371000072, + 13.283874512000068 + ], + [ + 107.569702148000033, + 13.286682129000042 + ], + [ + 107.571899414000086, + 13.290527344000054 + ], + [ + 107.574279785000044, + 13.293518066000047 + ], + [ + 107.577087402000075, + 13.294494629000042 + ], + [ + 107.581115723000039, + 13.295288086000028 + ], + [ + 107.582885742000087, + 13.298522949000073 + ], + [ + 107.582702637000068, + 13.302124023000033 + ], + [ + 107.584472656000059, + 13.304870605000076 + ], + [ + 107.587707520000038, + 13.305908203000058 + ], + [ + 107.59210205100004, + 13.306274414000029 + ], + [ + 107.595275879000042, + 13.305725098000039 + ], + [ + 107.597717285000044, + 13.303527832000043 + ], + [ + 107.600097656000059, + 13.301879883000026 + ], + [ + 107.602905273000033, + 13.302490234000061 + ], + [ + 107.593505859000061, + 13.278320312000062 + ], + [ + 107.582275391000053, + 13.251892090000069 + ], + [ + 107.577270508000083, + 13.240722656000059 + ], + [ + 107.569519043000071, + 13.222106934000067 + ], + [ + 107.556884766000053, + 13.192687988000046 + ], + [ + 107.548095703000058, + 13.170288086000028 + ], + [ + 107.537902832000043, + 13.14288330100004 + ], + [ + 107.531494141000053, + 13.124877930000025 + ], + [ + 107.526123047000056, + 13.110107422000056 + ], + [ + 107.509277344000054, + 13.064514160000044 + ], + [ + 107.495117187000062, + 13.026916504000042 + ], + [ + 107.494323730000076, + 13.023498535000044 + ], + [ + 107.492126465000069, + 13.019897461000028 + ], + [ + 107.490722656000059, + 13.015686035000044 + ], + [ + 107.49249267600004, + 13.012695312000062 + ], + [ + 107.492309570000089, + 13.009521484000061 + ], + [ + 107.491271973000039, + 13.005126953000058 + ], + [ + 107.491271973000039, + 13.001708984000061 + ], + [ + 107.494506836000085, + 13.00030517600004 + ], + [ + 107.497924805000082, + 12.998718262000068 + ], + [ + 107.498107910000044, + 12.994079590000069 + ], + [ + 107.496704102000081, + 12.989318848000039 + ], + [ + 107.496887207000043, + 12.985717773000033 + ], + [ + 107.498718262000068, + 12.981506348000039 + ], + [ + 107.502502441000047, + 12.978088379000042 + ], + [ + 107.502502441000047, + 12.974304199000073 + ], + [ + 107.497070312000062, + 12.973693848000039 + ], + [ + 107.492309570000089, + 12.973083496000072 + ], + [ + 107.489074707000043, + 12.971496582000043 + ], + [ + 107.487487793000071, + 12.968872070000032 + ], + [ + 107.489685059000067, + 12.964721680000025 + ], + [ + 107.487487793000071, + 12.962097168000071 + ], + [ + 107.486694336000085, + 12.95928955100004 + ], + [ + 107.487304687000062, + 12.956115723000039 + ], + [ + 107.485900879000042, + 12.953491211000028 + ], + [ + 107.487487793000071, + 12.950500488000046 + ], + [ + 107.485290527000075, + 12.946899414000029 + ], + [ + 107.486083984000061, + 12.942687988000046 + ], + [ + 107.488708496000072, + 12.941528320000032 + ], + [ + 107.491699219000054, + 12.939086914000029 + ], + [ + 107.493713379000042, + 12.935485840000069 + ], + [ + 107.493896484000061, + 12.930908203000058 + ], + [ + 107.492919922000056, + 12.926696777000075 + ], + [ + 107.494079590000069, + 12.923889160000044 + ], + [ + 107.495727539000086, + 12.921508789000029 + ], + [ + 107.497314453000058, + 12.918884277000075 + ], + [ + 107.500671387000068, + 12.91687011700003 + ], + [ + 107.499694824000073, + 12.912475586000028 + ], + [ + 107.496093750000057, + 12.911071777000075 + ], + [ + 107.494873047000056, + 12.906921387000068 + ], + [ + 107.496276855000076, + 12.903320312000062 + ], + [ + 107.492919922000056, + 12.89929199200003 + ], + [ + 107.493103027000075, + 12.894714355000076 + ], + [ + 107.496704102000081, + 12.892517090000069 + ], + [ + 107.497497559000067, + 12.888122559000067 + ], + [ + 107.497924805000082, + 12.883911133000026 + ], + [ + 107.498474121000072, + 12.880493164000029 + ], + [ + 107.499877930000082, + 12.877319336000028 + ], + [ + 107.502929687000062, + 12.873718262000068 + ], + [ + 107.505676270000038, + 12.870910645000038 + ], + [ + 107.508911133000083, + 12.870483398000033 + ], + [ + 107.511901855000076, + 12.868530273000033 + ], + [ + 107.513122559000067, + 12.865295410000044 + ], + [ + 107.512512207000043, + 12.862121582000043 + ], + [ + 107.511901855000076, + 12.85827636700003 + ], + [ + 107.516723633000083, + 12.856079102000024 + ], + [ + 107.520080566000047, + 12.855102539000029 + ], + [ + 107.522521973000039, + 12.852722168000071 + ], + [ + 107.524475098000039, + 12.849304199000073 + ], + [ + 107.52569580100004, + 12.844909668000071 + ], + [ + 107.526672363000046, + 12.841125488000046 + ], + [ + 107.530090332000043, + 12.839721680000025 + ], + [ + 107.533691406000059, + 12.838928223000039 + ], + [ + 107.536315918000071, + 12.837524414000029 + ], + [ + 107.539489746000072, + 12.835876465000069 + ], + [ + 107.542114258000083, + 12.833129883000026 + ], + [ + 107.542297363000046, + 12.829711914000029 + ], + [ + 107.54327392600004, + 12.826721191000047 + ], + [ + 107.545715332000043, + 12.823486328000058 + ], + [ + 107.550109863000046, + 12.822875977000024 + ], + [ + 107.551513672000056, + 12.819274902000075 + ], + [ + 107.553894043000071, + 12.817321777000075 + ], + [ + 107.552917480000076, + 12.813476562000062 + ], + [ + 107.552917480000076, + 12.809875488000046 + ], + [ + 107.553894043000071, + 12.805114746000072 + ], + [ + 107.557678223000039, + 12.803527832000043 + ], + [ + 107.559082031000059, + 12.799499512000068 + ], + [ + 107.560302734000061, + 12.795715332000043 + ], + [ + 107.562072754000042, + 12.79187011700003 + ], + [ + 107.562316895000038, + 12.787475586000028 + ], + [ + 107.559692383000083, + 12.784912109000061 + ], + [ + 107.559509277000075, + 12.779907227000024 + ], + [ + 107.561706543000071, + 12.775878906000059 + ], + [ + 107.561279297000056, + 12.772521973000039 + ], + [ + 107.559875488000046, + 12.768920898000033 + ], + [ + 107.559509277000075, + 12.764282227000024 + ], + [ + 107.55889892600004, + 12.76007080100004 + ], + [ + 107.559692383000083, + 12.755126953000058 + ], + [ + 107.559875488000046, + 12.752075195000032 + ], + [ + 107.560302734000061, + 12.748474121000072 + ], + [ + 107.564270020000038, + 12.745117187000062 + ], + [ + 107.563476562000062, + 12.739685059000067 + ], + [ + 107.564697266000053, + 12.735473633000026 + ], + [ + 107.567321777000075, + 12.732482910000044 + ], + [ + 107.567504883000083, + 12.728515625000057 + ], + [ + 107.565124512000068, + 12.724670410000044 + ], + [ + 107.562683105000076, + 12.720520020000038 + ], + [ + 107.559692383000083, + 12.716491699000073 + ], + [ + 107.559326172000056, + 12.712707520000038 + ], + [ + 107.560913086000085, + 12.708496094000054 + ], + [ + 107.563476562000062, + 12.704711914000029 + ], + [ + 107.567871094000054, + 12.702270508000026 + ], + [ + 107.569274902000075, + 12.697692871000072 + ], + [ + 107.570495605000076, + 12.693908691000047 + ], + [ + 107.573913574000073, + 12.692321777000075 + ], + [ + 107.575317383000083, + 12.688720703000058 + ], + [ + 107.577270508000083, + 12.685729980000076 + ], + [ + 107.578491211000085, + 12.682678223000039 + ], + [ + 107.581115723000039, + 12.680725098000039 + ], + [ + 107.578918457000043, + 12.678527832000043 + ], + [ + 107.576904297000056, + 12.675109863000046 + ], + [ + 107.576110840000069, + 12.670898437000062 + ], + [ + 107.571472168000071, + 12.666687012000068 + ], + [ + 107.571289062000062, + 12.662109375000057 + ], + [ + 107.569519043000071, + 12.657897949000073 + ], + [ + 107.570495605000076, + 12.653686523000033 + ], + [ + 107.573486328000058, + 12.650878906000059 + ], + [ + 107.570678711000085, + 12.648315430000025 + ], + [ + 107.569702148000033, + 12.643127441000047 + ], + [ + 107.571716309000067, + 12.639892578000058 + ], + [ + 107.571289062000062, + 12.636108398000033 + ], + [ + 107.572875977000081, + 12.632324219000054 + ], + [ + 107.572692871000072, + 12.628479004000042 + ], + [ + 107.575073242000087, + 12.625122070000032 + ], + [ + 107.578308105000076, + 12.621704102000024 + ], + [ + 107.581115723000039, + 12.618713379000042 + ], + [ + 107.582275391000053, + 12.61608886700003 + ], + [ + 107.583496094000054, + 12.613525391000053 + ], + [ + 107.581726074000073, + 12.610290527000075 + ], + [ + 107.582885742000087, + 12.606872559000067 + ], + [ + 107.584899902000075, + 12.603515625000057 + ], + [ + 107.585327148000033, + 12.598693848000039 + ], + [ + 107.583923340000069, + 12.595703125000057 + ], + [ + 107.582275391000053, + 12.592712402000075 + ], + [ + 107.582275391000053, + 12.589721680000025 + ], + [ + 107.582275391000053, + 12.586730957000043 + ], + [ + 107.580078125000057, + 12.584106445000032 + ], + [ + 107.580078125000057, + 12.578674316000047 + ], + [ + 107.580688477000081, + 12.574279785000044 + ], + [ + 107.582275391000053, + 12.571899414000029 + ], + [ + 107.582885742000087, + 12.568725586000028 + ], + [ + 107.585083008000083, + 12.56530761700003 + ], + [ + 107.588073730000076, + 12.561889648000033 + ], + [ + 107.589477539000086, + 12.558288574000073 + ], + [ + 107.588073730000076, + 12.555725098000039 + ], + [ + 107.585693359000061, + 12.553894043000071 + ], + [ + 107.583312988000046, + 12.551879883000026 + ], + [ + 107.581909180000082, + 12.549316406000059 + ], + [ + 107.579101562000062, + 12.546081543000071 + ], + [ + 107.576293945000089, + 12.54132080100004 + ], + [ + 107.577514648000033, + 12.537109375000057 + ], + [ + 107.576110840000069, + 12.53350830100004 + ], + [ + 107.573303223000039, + 12.531677246000072 + ], + [ + 107.571105957000043, + 12.529724121000072 + ], + [ + 107.568115234000061, + 12.528686523000033 + ], + [ + 107.564697266000053, + 12.526123047000056 + ], + [ + 107.563110352000081, + 12.522521973000039 + ], + [ + 107.5625, + 12.51788330100004 + ], + [ + 107.565124512000068, + 12.515502930000025 + ], + [ + 107.567871094000054, + 12.513305664000029 + ], + [ + 107.568908691000047, + 12.508728027000075 + ], + [ + 107.569519043000071, + 12.504516602000024 + ], + [ + 107.571289062000062, + 12.501708984000061 + ], + [ + 107.574096680000082, + 12.499511719000054 + ], + [ + 107.577697754000042, + 12.497924805000025 + ], + [ + 107.579711914000086, + 12.495300293000071 + ], + [ + 107.578491211000085, + 12.490478516000053 + ], + [ + 107.576904297000056, + 12.486083984000061 + ], + [ + 107.577087402000075, + 12.48272705100004 + ], + [ + 107.575683594000054, + 12.478881836000028 + ], + [ + 107.572509766000053, + 12.476928711000028 + ], + [ + 107.569702148000033, + 12.475891113000046 + ], + [ + 107.566894531000059, + 12.473327637000068 + ], + [ + 107.565673828000058, + 12.470275879000042 + ], + [ + 107.566894531000059, + 12.46710205100004 + ], + [ + 107.567687988000046, + 12.463317871000072 + ], + [ + 107.565917969000054, + 12.460327148000033 + ], + [ + 107.565307617000087, + 12.457519531000059 + ], + [ + 107.56671142600004, + 12.454528809000067 + ], + [ + 107.565307617000087, + 12.449890137000068 + ], + [ + 107.561889648000033, + 12.446472168000071 + ], + [ + 107.560302734000061, + 12.441894531000059 + ], + [ + 107.558288574000073, + 12.438110352000024 + ], + [ + 107.556091309000067, + 12.434875488000046 + ], + [ + 107.554687500000057, + 12.430480957000043 + ], + [ + 107.554077148000033, + 12.427673340000069 + ], + [ + 107.553283691000047, + 12.424926758000026 + ], + [ + 107.55108642600004, + 12.421081543000071 + ], + [ + 107.547485352000081, + 12.41827392600004 + ], + [ + 107.544677734000061, + 12.416503906000059 + ], + [ + 107.543884277000075, + 12.412475586000028 + ], + [ + 107.544921875000057, + 12.407287598000039 + ], + [ + 107.545471191000047, + 12.403076172000056 + ], + [ + 107.544494629000042, + 12.398681641000053 + ], + [ + 107.545898437000062, + 12.393920898000033 + ], + [ + 107.547912598000039, + 12.39093017600004 + ], + [ + 107.548522949000073, + 12.388122559000067 + ], + [ + 107.55108642600004, + 12.384521484000061 + ], + [ + 107.553894043000071, + 12.379089355000076 + ], + [ + 107.551330566000047, + 12.375488281000059 + ], + [ + 107.548278809000067, + 12.374084473000039 + ], + [ + 107.544494629000042, + 12.373474121000072 + ], + [ + 107.546508789000086, + 12.368713379000042 + ], + [ + 107.546875, + 12.364318848000039 + ], + [ + 107.547302246000072, + 12.360290527000075 + ], + [ + 107.546325684000067, + 12.356872559000067 + ], + [ + 107.544921875000057, + 12.352722168000071 + ], + [ + 107.541870117000087, + 12.350280762000068 + ], + [ + 107.539306641000053, + 12.351501465000069 + ], + [ + 107.536071777000075, + 12.350891113000046 + ], + [ + 107.534912109000061, + 12.346923828000058 + ], + [ + 107.532104492000087, + 12.345275879000042 + ], + [ + 107.528503418000071, + 12.345886230000076 + ], + [ + 107.527893066000047, + 12.343078613000046 + ], + [ + 107.526306152000075, + 12.340087891000053 + ], + [ + 107.523315430000082, + 12.340087891000053 + ], + [ + 107.520507812000062, + 12.339294434000067 + ], + [ + 107.51788330100004, + 12.337890625000057 + ], + [ + 107.515502930000082, + 12.335876465000069 + ], + [ + 107.513671875000057, + 12.333312988000046 + ], + [ + 107.512329102000081, + 12.329711914000029 + ], + [ + 107.507507324000073, + 12.327880859000061 + ], + [ + 107.504272461000085, + 12.326293945000032 + ], + [ + 107.501281738000046, + 12.324096680000025 + ], + [ + 107.497070312000062, + 12.322692871000072 + ], + [ + 107.492919922000056, + 12.321472168000071 + ], + [ + 107.489074707000043, + 12.319885254000042 + ], + [ + 107.486083984000061, + 12.319274902000075 + ], + [ + 107.482482910000044, + 12.317871094000054 + ], + [ + 107.479675293000071, + 12.316528320000032 + ], + [ + 107.477111816000047, + 12.314514160000044 + ], + [ + 107.473693848000039, + 12.313293457000043 + ], + [ + 107.469299316000047, + 12.311279297000056 + ], + [ + 107.467529297000056, + 12.30889892600004 + ], + [ + 107.467529297000056, + 12.304504395000038 + ], + [ + 107.465698242000087, + 12.300903320000032 + ], + [ + 107.463928223000039, + 12.298706055000025 + ], + [ + 107.461303711000085, + 12.296691895000038 + ], + [ + 107.458923340000069, + 12.295104980000076 + ], + [ + 107.456298828000058, + 12.293884277000075 + ], + [ + 107.453491211000085, + 12.29327392600004 + ], + [ + 107.450073242000087, + 12.292480469000054 + ], + [ + 107.445922852000081, + 12.290283203000058 + ], + [ + 107.443908691000047, + 12.286682129000042 + ], + [ + 107.444091797000056, + 12.280883789000029 + ], + [ + 107.443115234000061, + 12.277893066000047 + ], + [ + 107.439880371000072, + 12.275085449000073 + ], + [ + 107.439270020000038, + 12.269714355000076 + ], + [ + 107.442077637000068, + 12.265502930000025 + ], + [ + 107.440917969000054, + 12.262512207000043 + ], + [ + 107.437683105000076, + 12.258728027000075 + ], + [ + 107.436096191000047, + 12.253479004000042 + ], + [ + 107.434326172000056, + 12.247497559000067 + ], + [ + 107.430908203000058, + 12.246276855000076 + ], + [ + 107.427307129000042, + 12.247070312000062 + ], + [ + 107.423889160000044, + 12.247070312000062 + ], + [ + 107.421081543000071, + 12.246520996000072 + ], + [ + 107.418518066000047, + 12.243530273000033 + ], + [ + 107.416076660000044, + 12.245727539000029 + ], + [ + 107.413330078000058, + 12.248474121000072 + ], + [ + 107.409729004000042, + 12.250915527000075 + ], + [ + 107.406127930000082, + 12.252075195000032 + ], + [ + 107.402893066000047, + 12.253723145000038 + ], + [ + 107.399108887000068, + 12.256530762000068 + ], + [ + 107.398925781000059, + 12.260314941000047 + ], + [ + 107.395690918000071, + 12.264709473000039 + ], + [ + 107.391296387000068, + 12.26788330100004 + ], + [ + 107.387512207000043, + 12.271118164000029 + ], + [ + 107.387695312000062, + 12.275329590000069 + ], + [ + 107.386718750000057, + 12.278686523000033 + ], + [ + 107.388122559000067, + 12.281921387000068 + ], + [ + 107.388671875000057, + 12.285095215000069 + ], + [ + 107.384887695000089, + 12.287902832000043 + ], + [ + 107.383300781000059, + 12.290893555000025 + ], + [ + 107.382507324000073, + 12.294494629000042 + ], + [ + 107.378479004000042, + 12.296081543000071 + ], + [ + 107.378112793000071, + 12.300476074000073 + ], + [ + 107.375488281000059, + 12.305114746000072 + ], + [ + 107.372497559000067, + 12.307922363000046 + ], + [ + 107.370117187000062, + 12.310302734000061 + ], + [ + 107.366882324000073, + 12.3125 + ], + [ + 107.364685059000067, + 12.316894531000059 + ], + [ + 107.360717773000033, + 12.320495605000076 + ], + [ + 107.356323242000087, + 12.321289062000062 + ], + [ + 107.353271484000061, + 12.324096680000025 + ], + [ + 107.350097656000059, + 12.326721191000047 + ], + [ + 107.348327637000068, + 12.330078125000057 + ], + [ + 107.345703125000057, + 12.333679199000073 + ], + [ + 107.342712402000075, + 12.332092285000044 + ], + [ + 107.341125488000046, + 12.329101562000062 + ], + [ + 107.338317871000072, + 12.327270508000026 + ], + [ + 107.334106445000089, + 12.32647705100004 + ], + [ + 107.330322266000053, + 12.326110840000069 + ], + [ + 107.32647705100004, + 12.326110840000069 + ], + [ + 107.323486328000058, + 12.324707031000059 + ], + [ + 107.320678711000085, + 12.322509766000053 + ], + [ + 107.31671142600004, + 12.322082520000038 + ], + [ + 107.312927246000072, + 12.322692871000072 + ], + [ + 107.312316895000038, + 12.325500488000046 + ], + [ + 107.312316895000038, + 12.329528809000067 + ], + [ + 107.30889892600004, + 12.332275391000053 + ], + [ + 107.305297852000081, + 12.330322266000053 + ], + [ + 107.302490234000061, + 12.328491211000028 + ], + [ + 107.297912598000039, + 12.329284668000071 + ], + [ + 107.294128418000071, + 12.328674316000047 + ], + [ + 107.29132080100004, + 12.327880859000061 + ], + [ + 107.288513184000067, + 12.32647705100004 + ], + [ + 107.286071777000075, + 12.324096680000025 + ], + [ + 107.283081055000082, + 12.322509766000053 + ], + [ + 107.278320312000062, + 12.323303223000039 + ], + [ + 107.274291992000087, + 12.324890137000068 + ], + [ + 107.270080566000047, + 12.325317383000026 + ], + [ + 107.266906738000046, + 12.321899414000029 + ], + [ + 107.264282227000081, + 12.317871094000054 + ], + [ + 107.26007080100004, + 12.314880371000072 + ], + [ + 107.256103516000053, + 12.313720703000058 + ], + [ + 107.253112793000071, + 12.312316895000038 + ], + [ + 107.249694824000073, + 12.309326172000056 + ], + [ + 107.245117187000062, + 12.307128906000059 + ], + [ + 107.241516113000046, + 12.303527832000043 + ], + [ + 107.237304687000062, + 12.30108642600004 + ], + [ + 107.234924316000047, + 12.298522949000073 + ], + [ + 107.230712891000053, + 12.296325684000067 + ], + [ + 107.225708008000083, + 12.296325684000067 + ], + [ + 107.220886230000076, + 12.296691895000038 + ], + [ + 107.219299316000047, + 12.299316406000059 + ], + [ + 107.215515137000068, + 12.298278809000067 + ], + [ + 107.212280273000033, + 12.299072266000053 + ], + [ + 107.208312988000046, + 12.298889160000044 + ], + [ + 107.205078125000057, + 12.297302246000072 + ], + [ + 107.20147705100004, + 12.298095703000058 + ], + [ + 107.198913574000073, + 12.295898437000062 + ], + [ + 107.196105957000043, + 12.295288086000028 + ], + [ + 107.193115234000061, + 12.295471191000047 + ], + [ + 107.190490723000039, + 12.293090820000032 + ], + [ + 107.186279297000056, + 12.28991699200003 + ], + [ + 107.185302734000061, + 12.286499023000033 + ], + [ + 107.183471680000082, + 12.284118652000075 + ], + [ + 107.179687500000057, + 12.284484863000046 + ], + [ + 107.17608642600004, + 12.282287598000039 + ], + [ + 107.172302246000072, + 12.279907227000024 + ], + [ + 107.168518066000047, + 12.279113770000038 + ], + [ + 107.164489746000072, + 12.278076172000056 + ], + [ + 107.161499023000033, + 12.278930664000029 + ], + [ + 107.157470703000058, + 12.278503418000071 + ], + [ + 107.153503418000071, + 12.276306152000075 + ], + [ + 107.152526855000076, + 12.273498535000044 + ], + [ + 107.152282715000069, + 12.270324707000043 + ], + [ + 107.151123047000056, + 12.266723633000026 + ], + [ + 107.146911621000072, + 12.264282227000024 + ], + [ + 107.147705078000058, + 12.259704590000069 + ], + [ + 107.144287109000061, + 12.25811767600004 + ], + [ + 107.145874023000033, + 12.254699707000043 + ], + [ + 107.144897461000085, + 12.250671387000068 + ], + [ + 107.141723633000083, + 12.25030517600004 + ], + [ + 107.140502930000082, + 12.247497559000067 + ], + [ + 107.138305664000086, + 12.243896484000061 + ], + [ + 107.137878418000071, + 12.238098145000038 + ], + [ + 107.139526367000087, + 12.233886719000054 + ], + [ + 107.138305664000086, + 12.230285645000038 + ], + [ + 107.134704590000069, + 12.228881836000028 + ], + [ + 107.130676270000038, + 12.226074219000054 + ], + [ + 107.126098633000083, + 12.226684570000032 + ], + [ + 107.122314453000058, + 12.223327637000068 + ], + [ + 107.119323730000076, + 12.219726562000062 + ], + [ + 107.115478516000053, + 12.216918945000032 + ], + [ + 107.112670898000033, + 12.218872070000032 + ], + [ + 107.110107422000056, + 12.215087891000053 + ], + [ + 107.106872559000067, + 12.210876465000069 + ], + [ + 107.103088379000042, + 12.208312988000046 + ], + [ + 107.100708008000083, + 12.205871582000043 + ], + [ + 107.101074219000054, + 12.201721191000047 + ], + [ + 107.097717285000044, + 12.19812011700003 + ], + [ + 107.097717285000044, + 12.195129395000038 + ], + [ + 107.097900391000053, + 12.191894531000059 + ], + [ + 107.095520020000038, + 12.19030761700003 + ], + [ + 107.095092773000033, + 12.186096191000047 + ], + [ + 107.091674805000082, + 12.181274414000029 + ], + [ + 107.087524414000086, + 12.182312012000068 + ], + [ + 107.087524414000086, + 12.185729980000076 + ], + [ + 107.083679199000073, + 12.186096191000047 + ], + [ + 107.080505371000072, + 12.185302734000061 + ], + [ + 107.077880859000061, + 12.186889648000033 + ], + [ + 107.07452392600004, + 12.187927246000072 + ], + [ + 107.074279785000044, + 12.184082031000059 + ], + [ + 107.072692871000072, + 12.180480957000043 + ], + [ + 107.070129395000038, + 12.177917480000076 + ], + [ + 107.071899414000086, + 12.175720215000069 + ], + [ + 107.07452392600004, + 12.174499512000068 + ], + [ + 107.077087402000075, + 12.171081543000071 + ], + [ + 107.079895020000038, + 12.16827392600004 + ], + [ + 107.078308105000076, + 12.164123535000044 + ], + [ + 107.075073242000087, + 12.163879395000038 + ], + [ + 107.072509766000053, + 12.162719727000024 + ], + [ + 107.069274902000075, + 12.160278320000032 + ], + [ + 107.066101074000073, + 12.160705566000047 + ], + [ + 107.063110352000081, + 12.158691406000059 + ], + [ + 107.060485840000069, + 12.161315918000071 + ], + [ + 107.057678223000039, + 12.157714844000054 + ], + [ + 107.058471680000082, + 12.154724121000072 + ], + [ + 107.055480957000043, + 12.151916504000042 + ], + [ + 107.053710937000062, + 12.148315430000025 + ], + [ + 107.054504395000038, + 12.143920898000033 + ], + [ + 107.050720215000069, + 12.142272949000073 + ], + [ + 107.048706055000082, + 12.136108398000033 + ], + [ + 107.045471191000047, + 12.132873535000044 + ], + [ + 107.041870117000087, + 12.132324219000054 + ], + [ + 107.037902832000043, + 12.131103516000053 + ], + [ + 107.035278320000089, + 12.128112793000071 + ], + [ + 107.029296875000057, + 12.114318848000039 + ], + [ + 107.015686035000044, + 12.106506348000039 + ], + [ + 107.006713867000087, + 12.093688965000069 + ], + [ + 107.002685547000056, + 12.089294434000067 + ], + [ + 106.996704102000081, + 12.087097168000071 + ], + [ + 106.977111816000047, + 12.081298828000058 + ], + [ + 106.962890625000057, + 12.077270508000026 + ], + [ + 106.958923340000069, + 12.07647705100004 + ], + [ + 106.953491211000085, + 12.074890137000068 + ], + [ + 106.948913574000073, + 12.07312011700003 + ], + [ + 106.946289062000062, + 12.069091797000056 + ], + [ + 106.943725586000085, + 12.067687988000046 + ], + [ + 106.940307617000087, + 12.068725586000028 + ], + [ + 106.936706543000071, + 12.067504883000026 + ], + [ + 106.932922363000046, + 12.06671142600004 + ], + [ + 106.927673340000069, + 12.063903809000067 + ], + [ + 106.923095703000058, + 12.064270020000038 + ], + [ + 106.91827392600004, + 12.062683105000076 + ], + [ + 106.914489746000072, + 12.063903809000067 + ], + [ + 106.911682129000042, + 12.06671142600004 + ], + [ + 106.908691406000059, + 12.067504883000026 + ], + [ + 106.905090332000043, + 12.067687988000046 + ], + [ + 106.901916504000042, + 12.066528320000032 + ], + [ + 106.898315430000082, + 12.066101074000073 + ], + [ + 106.894470215000069, + 12.067687988000046 + ], + [ + 106.891296387000068, + 12.070129395000038 + ], + [ + 106.888122559000067, + 12.071899414000029 + ], + [ + 106.884094238000046, + 12.072692871000072 + ], + [ + 106.879699707000043, + 12.073303223000039 + ], + [ + 106.875488281000059, + 12.072692871000072 + ], + [ + 106.870727539000086, + 12.07312011700003 + ], + [ + 106.865905762000068, + 12.071105957000043 + ], + [ + 106.861083984000061, + 12.069885254000042 + ], + [ + 106.85772705100004, + 12.068725586000028 + ], + [ + 106.854309082000043, + 12.067077637000068 + ], + [ + 106.850891113000046, + 12.069885254000042 + ], + [ + 106.847717285000044, + 12.071472168000071 + ], + [ + 106.844299316000047, + 12.073913574000073 + ], + [ + 106.839904785000044, + 12.073486328000058 + ], + [ + 106.835876465000069, + 12.072509766000053 + ], + [ + 106.833129883000083, + 12.07452392600004 + ], + [ + 106.830505371000072, + 12.078125 + ], + [ + 106.827880859000061, + 12.081298828000058 + ], + [ + 106.824279785000044, + 12.08288574200003 + ], + [ + 106.820495605000076, + 12.083129883000026 + ], + [ + 106.816284180000082, + 12.083129883000026 + ], + [ + 106.814697266000053, + 12.080505371000072 + ], + [ + 106.810913086000085, + 12.079711914000029 + ], + [ + 106.806274414000086, + 12.079895020000038 + ], + [ + 106.801696777000075, + 12.081726074000073 + ], + [ + 106.799316406000059, + 12.085083008000026 + ], + [ + 106.799499512000068, + 12.089721680000025 + ], + [ + 106.798278809000067, + 12.094726562000062 + ], + [ + 106.795471191000047, + 12.100280762000068 + ], + [ + 106.793884277000075, + 12.104919434000067 + ], + [ + 106.793518066000047, + 12.108520508000026 + ], + [ + 106.791503906000059, + 12.111694336000028 + ], + [ + 106.791076660000044, + 12.116516113000046 + ], + [ + 106.793701172000056, + 12.120910645000038 + ], + [ + 106.795715332000043, + 12.126098633000026 + ], + [ + 106.796875, + 12.130310059000067 + ], + [ + 106.798706055000082, + 12.134521484000061 + ], + [ + 106.797485352000081, + 12.138122559000067 + ], + [ + 106.797302246000072, + 12.141906738000046 + ], + [ + 106.795898437000062, + 12.146301270000038 + ], + [ + 106.793884277000075, + 12.149719238000046 + ], + [ + 106.79327392600004, + 12.153503418000071 + ], + [ + 106.795288086000085, + 12.155883789000029 + ], + [ + 106.798095703000058, + 12.158874512000068 + ], + [ + 106.799072266000053, + 12.164672852000024 + ], + [ + 106.797729492000087, + 12.167480469000054 + ], + [ + 106.797119141000053, + 12.170288086000028 + ], + [ + 106.795898437000062, + 12.174316406000059 + ], + [ + 106.796875, + 12.179504395000038 + ], + [ + 106.800292969000054, + 12.18389892600004 + ], + [ + 106.801513672000056, + 12.187072754000042 + ], + [ + 106.801330566000047, + 12.191284180000025 + ], + [ + 106.798706055000082, + 12.194885254000042 + ], + [ + 106.796081543000071, + 12.199096680000025 + ], + [ + 106.792907715000069, + 12.202880859000061 + ], + [ + 106.788879395000038, + 12.206481934000067 + ], + [ + 106.786926270000038, + 12.210693359000061 + ], + [ + 106.785095215000069, + 12.215087891000053 + ], + [ + 106.781127930000082, + 12.219726562000062 + ], + [ + 106.778076172000056, + 12.223327637000068 + ], + [ + 106.775878906000059, + 12.226318359000061 + ], + [ + 106.773681641000053, + 12.228881836000028 + ], + [ + 106.770324707000043, + 12.23132324200003 + ], + [ + 106.768127441000047, + 12.233520508000026 + ], + [ + 106.766723633000083, + 12.236877441000047 + ], + [ + 106.765075684000067, + 12.240478516000053 + ], + [ + 106.764282227000081, + 12.245483398000033 + ], + [ + 106.762329102000081, + 12.249511719000054 + ], + [ + 106.759277344000054, + 12.250122070000032 + ], + [ + 106.756530762000068, + 12.252319336000028 + ], + [ + 106.753723145000038, + 12.254272461000028 + ], + [ + 106.75030517600004, + 12.256530762000068 + ], + [ + 106.748291016000053, + 12.260925293000071 + ], + [ + 106.746704102000081, + 12.264282227000024 + ], + [ + 106.743530273000033, + 12.26647949200003 + ], + [ + 106.740112305000082, + 12.268920898000033 + ], + [ + 106.736511230000076, + 12.271118164000029 + ], + [ + 106.732116699000073, + 12.272888184000067 + ], + [ + 106.729125977000081, + 12.272521973000039 + ], + [ + 106.726318359000061, + 12.273315430000025 + ], + [ + 106.722473145000038, + 12.274719238000046 + ], + [ + 106.718078613000046, + 12.277893066000047 + ], + [ + 106.714111328000058, + 12.281494141000053 + ], + [ + 106.710876465000069, + 12.283874512000068 + ], + [ + 106.707519531000059, + 12.286071777000075 + ], + [ + 106.703674316000047, + 12.287719727000024 + ], + [ + 106.700927734000061, + 12.288330078000058 + ], + [ + 106.697082520000038, + 12.289306641000053 + ], + [ + 106.693298340000069, + 12.289672852000024 + ], + [ + 106.689514160000044, + 12.290283203000058 + ], + [ + 106.686279297000056, + 12.290527344000054 + ], + [ + 106.681884766000053, + 12.290527344000054 + ], + [ + 106.677673340000069, + 12.291687012000068 + ], + [ + 106.673706055000082, + 12.29327392600004 + ], + [ + 106.670288086000085, + 12.294921875000057 + ], + [ + 106.666870117000087, + 12.296508789000029 + ], + [ + 106.663879395000038, + 12.297485352000024 + ], + [ + 106.659912109000061, + 12.298095703000058 + ], + [ + 106.654724121000072, + 12.298278809000067 + ], + [ + 106.651306152000075, + 12.299072266000053 + ], + [ + 106.648681641000053, + 12.300903320000032 + ], + [ + 106.645324707000043, + 12.303710937000062 + ], + [ + 106.639526367000087, + 12.305480957000043 + ], + [ + 106.633300781000059, + 12.305480957000043 + ], + [ + 106.628112793000071, + 12.305908203000058 + ], + [ + 106.624511719000054, + 12.307678223000039 + ], + [ + 106.621276855000076, + 12.309875488000046 + ], + [ + 106.618530273000033, + 12.311523437000062 + ], + [ + 106.613525391000053, + 12.313110352000024 + ], + [ + 106.608276367000087, + 12.314514160000044 + ], + [ + 106.604919434000067, + 12.317687988000046 + ], + [ + 106.602722168000071, + 12.319885254000042 + ], + [ + 106.599670410000044, + 12.324890137000068 + ], + [ + 106.597106934000067, + 12.329711914000029 + ], + [ + 106.595092773000033, + 12.334106445000032 + ], + [ + 106.592712402000075, + 12.338500977000024 + ], + [ + 106.590698242000087, + 12.343688965000069 + ], + [ + 106.588317871000072, + 12.350097656000059 + ], + [ + 106.586120605000076, + 12.357910156000059 + ], + [ + 106.584472656000059, + 12.363281250000057 + ], + [ + 106.581909180000082, + 12.370727539000029 + ], + [ + 106.579284668000071, + 12.375671387000068 + ], + [ + 106.57647705100004, + 12.382080078000058 + ], + [ + 106.573913574000073, + 12.389282227000024 + ], + [ + 106.570922852000081, + 12.396484375000057 + ], + [ + 106.570129395000038, + 12.401123047000056 + ], + [ + 106.568298340000069, + 12.404296875000057 + ], + [ + 106.563720703000058, + 12.408325195000032 + ], + [ + 106.560119629000042, + 12.409484863000046 + ], + [ + 106.556518555000082, + 12.409484863000046 + ], + [ + 106.552917480000076, + 12.411499023000033 + ], + [ + 106.548889160000044, + 12.413085937000062 + ], + [ + 106.547302246000072, + 12.415893555000025 + ], + [ + 106.544494629000042, + 12.417480469000054 + ], + [ + 106.540100098000039, + 12.417724609000061 + ], + [ + 106.536315918000071, + 12.418701172000056 + ], + [ + 106.531677246000072, + 12.421508789000029 + ], + [ + 106.527282715000069, + 12.424499512000068 + ], + [ + 106.525085449000073, + 12.426513672000056 + ], + [ + 106.523925781000059, + 12.429687500000057 + ], + [ + 106.522705078000058, + 12.433288574000073 + ], + [ + 106.519897461000085, + 12.435485840000069 + ], + [ + 106.515686035000044, + 12.437683105000076 + ], + [ + 106.512695312000062, + 12.437683105000076 + ], + [ + 106.509277344000054, + 12.439086914000029 + ], + [ + 106.505676270000038, + 12.439514160000044 + ], + [ + 106.501892090000069, + 12.437927246000072 + ], + [ + 106.497314453000058, + 12.438903809000067 + ], + [ + 106.395690918000071, + 12.503112793000071 + ], + [ + 106.392517090000069, + 12.504089355000076 + ], + [ + 106.387878418000071, + 12.505676270000038 + ], + [ + 106.382507324000073, + 12.507690430000025 + ], + [ + 106.378479004000042, + 12.509277344000054 + ], + [ + 106.374694824000073, + 12.511901855000076 + ], + [ + 106.370727539000086, + 12.514282227000024 + ], + [ + 106.366516113000046, + 12.518127441000047 + ], + [ + 106.363281250000057, + 12.521484375000057 + ], + [ + 106.361328125000057, + 12.524902344000054 + ], + [ + 106.359130859000061, + 12.528686523000033 + ], + [ + 106.358886719000054, + 12.532470703000058 + ], + [ + 106.359497070000089, + 12.536682129000042 + ], + [ + 106.360900879000042, + 12.542907715000069 + ], + [ + 106.361511230000076, + 12.546875 + ], + [ + 106.362121582000043, + 12.550109863000046 + ], + [ + 106.362915039000086, + 12.553283691000047 + ], + [ + 106.363891602000081, + 12.556274414000029 + ], + [ + 106.364929199000073, + 12.559692383000026 + ], + [ + 106.366088867000087, + 12.5625 + ], + [ + 106.367309570000089, + 12.565673828000058 + ], + [ + 106.368713379000042, + 12.568908691000047 + ], + [ + 106.370300293000071, + 12.572692871000072 + ], + [ + 106.372070312000062, + 12.577514648000033 + ], + [ + 106.373901367000087, + 12.581298828000058 + ], + [ + 106.37530517600004, + 12.584472656000059 + ], + [ + 106.376708984000061, + 12.587524414000029 + ], + [ + 106.377685547000056, + 12.590270996000072 + ], + [ + 106.378906250000057, + 12.593078613000046 + ], + [ + 106.380493164000086, + 12.596923828000058 + ], + [ + 106.381713867000087, + 12.599670410000044 + ], + [ + 106.383300781000059, + 12.603271484000061 + ], + [ + 106.385314941000047, + 12.608093262000068 + ], + [ + 106.387512207000043, + 12.612670898000033 + ], + [ + 106.389282227000081, + 12.616882324000073 + ], + [ + 106.390686035000044, + 12.619873047000056 + ], + [ + 106.391906738000046, + 12.622680664000029 + ], + [ + 106.393920898000033, + 12.627319336000028 + ], + [ + 106.395690918000071, + 12.631530762000068 + ], + [ + 106.396728516000053, + 12.634277344000054 + ], + [ + 106.397888184000067, + 12.638122559000067 + ], + [ + 106.399291992000087, + 12.642089844000054 + ], + [ + 106.400329590000069, + 12.646728516000053 + ], + [ + 106.401306152000075, + 12.651672363000046 + ], + [ + 106.401672363000046, + 12.656494141000053 + ], + [ + 106.401489258000083, + 12.661926270000038 + ], + [ + 106.401489258000083, + 12.667114258000026 + ], + [ + 106.402282715000069, + 12.671875 + ], + [ + 106.403503418000071, + 12.676513672000056 + ], + [ + 106.405517578000058, + 12.679687500000057 + ], + [ + 106.406921387000068, + 12.684509277000075 + ], + [ + 106.410095215000069, + 12.686523437000062 + ], + [ + 106.412292480000076, + 12.689880371000072 + ], + [ + 106.414489746000072, + 12.693481445000032 + ], + [ + 106.416870117000087, + 12.697509766000053 + ], + [ + 106.419128418000071, + 12.70147705100004 + ], + [ + 106.420288086000085, + 12.704284668000071 + ], + [ + 106.421508789000086, + 12.707092285000044 + ], + [ + 106.422912598000039, + 12.709899902000075 + ], + [ + 106.424682617000087, + 12.712524414000029 + ], + [ + 106.426879883000083, + 12.716308594000054 + ], + [ + 106.429870605000076, + 12.720520020000038 + ], + [ + 106.431884766000053, + 12.722717285000044 + ], + [ + 106.434509277000075, + 12.725097656000059 + ], + [ + 106.436889648000033, + 12.727294922000056 + ], + [ + 106.440124512000068, + 12.729919434000067 + ], + [ + 106.443298340000069, + 12.73272705100004 + ], + [ + 106.446289062000062, + 12.73468017600004 + ], + [ + 106.44952392600004, + 12.736877441000047 + ], + [ + 106.453491211000085, + 12.739074707000043 + ], + [ + 106.456481934000067, + 12.740905762000068 + ], + [ + 106.459472656000059, + 12.742919922000056 + ], + [ + 106.462524414000086, + 12.745300293000071 + ], + [ + 106.464904785000044, + 12.746887207000043 + ], + [ + 106.467712402000075, + 12.748474121000072 + ], + [ + 106.470520020000038, + 12.749694824000073 + ], + [ + 106.47491455100004, + 12.752502441000047 + ], + [ + 106.478698730000076, + 12.755493164000029 + ], + [ + 106.481689453000058, + 12.757324219000054 + ], + [ + 106.483093262000068, + 12.760314941000047 + ], + [ + 106.485107422000056, + 12.763671875000057 + ], + [ + 106.487304687000062, + 12.767089844000054 + ], + [ + 106.490478516000053, + 12.769897461000028 + ], + [ + 106.493530273000033, + 12.772094727000024 + ], + [ + 106.497314453000058, + 12.77429199200003 + ], + [ + 106.499511719000054, + 12.776672363000046 + ], + [ + 106.503479004000042, + 12.779113770000038 + ], + [ + 106.506896973000039, + 12.778503418000071 + ], + [ + 106.511474609000061, + 12.779113770000038 + ], + [ + 106.515319824000073, + 12.78210449200003 + ], + [ + 106.519104004000042, + 12.783325195000032 + ], + [ + 106.522705078000058, + 12.784729004000042 + ], + [ + 106.527099609000061, + 12.786315918000071 + ], + [ + 106.532104492000087, + 12.787475586000028 + ], + [ + 106.537109375000057, + 12.786071777000075 + ], + [ + 106.541503906000059, + 12.787292480000076 + ], + [ + 106.545288086000085, + 12.78991699200003 + ], + [ + 106.550109863000046, + 12.793701172000056 + ], + [ + 106.554504395000038, + 12.796875 + ], + [ + 106.557678223000039, + 12.79968261700003 + ], + [ + 106.559875488000046, + 12.801696777000075 + ], + [ + 106.562316895000038, + 12.804077148000033 + ], + [ + 106.565307617000087, + 12.806884766000053 + ], + [ + 106.568908691000047, + 12.810302734000061 + ], + [ + 106.573120117000087, + 12.813720703000058 + ], + [ + 106.576721191000047, + 12.816894531000059 + ], + [ + 106.579711914000086, + 12.819702148000033 + ], + [ + 106.583496094000054, + 12.822875977000024 + ], + [ + 106.585876465000069, + 12.825317383000026 + ], + [ + 106.588317871000072, + 12.827270508000026 + ], + [ + 106.590515137000068, + 12.829284668000071 + ], + [ + 106.593688965000069, + 12.832275391000053 + ], + [ + 106.595886230000076, + 12.835083008000026 + ], + [ + 106.598693848000039, + 12.837890625000057 + ], + [ + 106.600708008000083, + 12.840515137000068 + ], + [ + 106.603088379000042, + 12.843688965000069 + ], + [ + 106.605712891000053, + 12.847717285000044 + ], + [ + 106.607482910000044, + 12.851318359000061 + ], + [ + 106.609313965000069, + 12.855712891000053 + ], + [ + 106.610107422000056, + 12.859130859000061 + ], + [ + 106.611083984000061, + 12.863525391000053 + ], + [ + 106.611694336000085, + 12.868530273000033 + ], + [ + 106.611877441000047, + 12.871704102000024 + ], + [ + 106.612304687000062, + 12.874694824000073 + ], + [ + 106.612915039000086, + 12.878906250000057 + ], + [ + 106.613281250000057, + 12.882507324000073 + ], + [ + 106.613708496000072, + 12.886108398000033 + ], + [ + 106.613708496000072, + 12.88952636700003 + ], + [ + 106.613708496000072, + 12.893127441000047 + ], + [ + 106.613525391000053, + 12.896301270000038 + ], + [ + 106.613708496000072, + 12.900329590000069 + ], + [ + 106.613708496000072, + 12.903320312000062 + ], + [ + 106.612670898000033, + 12.907287598000039 + ], + [ + 106.613098145000038, + 12.911071777000075 + ], + [ + 106.610107422000056, + 12.914123535000044 + ], + [ + 106.607910156000059, + 12.917480469000054 + ], + [ + 106.605895996000072, + 12.920715332000043 + ], + [ + 106.603515625000057, + 12.924072266000053 + ], + [ + 106.600524902000075, + 12.927490234000061 + ], + [ + 106.595703125000057, + 12.932128906000059 + ], + [ + 106.59210205100004, + 12.935119629000042 + ], + [ + 106.585876465000069, + 12.939880371000072 + ], + [ + 106.575683594000054, + 12.947326660000044 + ], + [ + 106.569091797000056, + 12.951721191000047 + ], + [ + 106.560485840000069, + 12.957275391000053 + ], + [ + 106.554687500000057, + 12.961120605000076 + ], + [ + 106.549926758000083, + 12.964111328000058 + ], + [ + 106.545104980000076, + 12.96710205100004 + ], + [ + 106.54132080100004, + 12.969482422000056 + ], + [ + 106.536071777000075, + 12.972290039000029 + ], + [ + 106.532470703000058, + 12.974304199000073 + ], + [ + 106.527282715000069, + 12.977478027000075 + ], + [ + 106.524108887000068, + 12.978881836000028 + ], + [ + 106.519104004000042, + 12.981506348000039 + ], + [ + 106.510925293000071, + 12.985290527000075 + ], + [ + 106.500488281000059, + 12.990295410000044 + ], + [ + 106.496704102000081, + 12.991882324000073 + ], + [ + 106.479675293000071, + 13.002319336000028 + ], + [ + 106.477111816000047, + 13.004089355000076 + ], + [ + 106.466674805000082, + 13.011291504000042 + ], + [ + 106.462707520000038, + 13.013305664000029 + ], + [ + 106.458679199000073, + 13.012878418000071 + ], + [ + 106.454711914000086, + 13.014282227000024 + ], + [ + 106.451293945000089, + 13.014709473000039 + ], + [ + 106.448120117000087, + 13.013671875000057 + ], + [ + 106.444274902000075, + 13.011291504000042 + ], + [ + 106.441101074000073, + 13.011291504000042 + ], + [ + 106.439086914000086, + 13.014099121000072 + ], + [ + 106.436279297000056, + 13.014709473000039 + ], + [ + 106.433715820000089, + 13.016906738000046 + ], + [ + 106.429687500000057, + 13.019104004000042 + ], + [ + 106.425292969000054, + 13.021118164000029 + ], + [ + 106.421081543000071, + 13.020690918000071 + ], + [ + 106.417480469000054, + 13.021728516000053 + ], + [ + 106.415283203000058, + 13.024719238000046 + ], + [ + 106.413085937000062, + 13.027099609000061 + ], + [ + 106.410888672000056, + 13.028930664000029 + ], + [ + 106.408325195000089, + 13.030883789000029 + ], + [ + 106.405700684000067, + 13.036926270000038 + ], + [ + 106.405517578000058, + 13.04187011700003 + ], + [ + 106.403503418000071, + 13.045288086000028 + ], + [ + 106.394104004000042, + 13.049499512000068 + ], + [ + 106.388488770000038, + 13.050720215000069 + ], + [ + 106.381713867000087, + 13.054321289000029 + ], + [ + 106.378723145000038, + 13.057678223000039 + ], + [ + 106.374877930000082, + 13.065490723000039 + ], + [ + 106.372070312000062, + 13.069091797000056 + ], + [ + 106.363281250000057, + 13.079528809000067 + ], + [ + 106.360717773000033, + 13.082519531000059 + ], + [ + 106.359924316000047, + 13.086730957000043 + ], + [ + 106.357482910000044, + 13.089721680000025 + ], + [ + 106.354919434000067, + 13.093078613000046 + ], + [ + 106.351318359000061, + 13.095092773000033 + ], + [ + 106.348327637000068, + 13.097717285000044 + ], + [ + 106.344482422000056, + 13.099304199000073 + ], + [ + 106.343078613000046, + 13.101928711000028 + ], + [ + 106.341491699000073, + 13.105712891000053 + ], + [ + 106.340881348000039, + 13.110290527000075 + ], + [ + 106.339111328000058, + 13.11608886700003 + ], + [ + 106.341125488000046, + 13.122070312000062 + ], + [ + 106.340881348000039, + 13.129516602000024 + ], + [ + 106.338928223000039, + 13.133911133000026 + ], + [ + 106.341491699000073, + 13.148071289000029 + ], + [ + 106.343872070000089, + 13.152099609000061 + ], + [ + 106.344299316000047, + 13.155883789000029 + ], + [ + 106.344909668000071, + 13.160278320000032 + ], + [ + 106.346923828000058, + 13.163879395000038 + ], + [ + 106.348083496000072, + 13.167907715000069 + ], + [ + 106.349670410000044, + 13.171508789000029 + ], + [ + 106.352722168000071, + 13.172912598000039 + ], + [ + 106.357116699000073, + 13.173522949000073 + ], + [ + 106.362121582000043, + 13.172912598000039 + ], + [ + 106.366271973000039, + 13.172485352000024 + ], + [ + 106.370483398000033, + 13.172302246000072 + ], + [ + 106.374511719000054, + 13.172302246000072 + ], + [ + 106.377929687000062, + 13.172485352000024 + ], + [ + 106.381286621000072, + 13.17272949200003 + ], + [ + 106.38507080100004, + 13.17272949200003 + ], + [ + 106.389099121000072, + 13.172302246000072 + ], + [ + 106.394287109000061, + 13.174072266000053 + ], + [ + 106.398925781000059, + 13.175476074000073 + ], + [ + 106.401672363000046, + 13.174499512000068 + ], + [ + 106.405273437000062, + 13.173278809000067 + ], + [ + 106.409118652000075, + 13.171875 + ], + [ + 106.412292480000076, + 13.170104980000076 + ], + [ + 106.415893555000082, + 13.168884277000075 + ], + [ + 106.419311523000033, + 13.170471191000047 + ], + [ + 106.424072266000053, + 13.169677734000061 + ], + [ + 106.428894043000071, + 13.169128418000071 + ], + [ + 106.430908203000058, + 13.171325684000067 + ], + [ + 106.431274414000086, + 13.174499512000068 + ], + [ + 106.430725098000039, + 13.177307129000042 + ], + [ + 106.429687500000057, + 13.181091309000067 + ], + [ + 106.428527832000043, + 13.184509277000075 + ], + [ + 106.426879883000083, + 13.189086914000029 + ], + [ + 106.424682617000087, + 13.193908691000047 + ], + [ + 106.421691895000038, + 13.197692871000072 + ], + [ + 106.419494629000042, + 13.199707031000059 + ], + [ + 106.416870117000087, + 13.201904297000056 + ], + [ + 106.414306641000053, + 13.205688477000024 + ], + [ + 106.411499023000033, + 13.208923340000069 + ], + [ + 106.409484863000046, + 13.211914062000062 + ], + [ + 106.407287598000039, + 13.214294434000067 + ], + [ + 106.404479980000076, + 13.216674805000025 + ], + [ + 106.401123047000056, + 13.219482422000056 + ], + [ + 106.397277832000043, + 13.221496582000043 + ], + [ + 106.392517090000069, + 13.224121094000054 + ], + [ + 106.389282227000081, + 13.225524902000075 + ], + [ + 106.385498047000056, + 13.226928711000028 + ], + [ + 106.381896973000039, + 13.228088379000042 + ], + [ + 106.378906250000057, + 13.229675293000071 + ], + [ + 106.375671387000068, + 13.23132324200003 + ], + [ + 106.372924805000082, + 13.23272705100004 + ], + [ + 106.370727539000086, + 13.234497070000032 + ], + [ + 106.369079590000069, + 13.236877441000047 + ], + [ + 106.368530273000033, + 13.239929199000073 + ], + [ + 106.368530273000033, + 13.244506836000028 + ], + [ + 106.36749267600004, + 13.248718262000068 + ], + [ + 106.366271973000039, + 13.251525879000042 + ], + [ + 106.361083984000061, + 13.261108398000033 + ], + [ + 106.359130859000061, + 13.264099121000072 + ], + [ + 106.356323242000087, + 13.267700195000032 + ], + [ + 106.354309082000043, + 13.270874023000033 + ], + [ + 106.352294922000056, + 13.274108887000068 + ], + [ + 106.351074219000054, + 13.277709961000028 + ], + [ + 106.350708008000083, + 13.281311035000044 + ], + [ + 106.349487305000082, + 13.284118652000075 + ], + [ + 106.347717285000044, + 13.286499023000033 + ], + [ + 106.346496582000043, + 13.28991699200003 + ], + [ + 106.345886230000076, + 13.294494629000042 + ], + [ + 106.346923828000058, + 13.29968261700003 + ], + [ + 106.348693848000039, + 13.302673340000069 + ], + [ + 106.350097656000059, + 13.306518555000025 + ], + [ + 106.350097656000059, + 13.310119629000042 + ], + [ + 106.34991455100004, + 13.314880371000072 + ], + [ + 106.349670410000044, + 13.319091797000056 + ], + [ + 106.350280762000068, + 13.322326660000044 + ], + [ + 106.351074219000054, + 13.32507324200003 + ], + [ + 106.352111816000047, + 13.328308105000076 + ], + [ + 106.354492187000062, + 13.33288574200003 + ], + [ + 106.356506348000039, + 13.338073730000076 + ], + [ + 106.356506348000039, + 13.343505859000061 + ], + [ + 106.354675293000071, + 13.347717285000044 + ], + [ + 106.353881836000085, + 13.350891113000046 + ], + [ + 106.354125977000081, + 13.355285645000038 + ], + [ + 106.352478027000075, + 13.358886719000054 + ], + [ + 106.350708008000083, + 13.361328125000057 + ], + [ + 106.352294922000056, + 13.366699219000054 + ], + [ + 106.352478027000075, + 13.372070312000062 + ], + [ + 106.353088379000042, + 13.375488281000059 + ], + [ + 106.353088379000042, + 13.379699707000043 + ], + [ + 106.351074219000054, + 13.383728027000075 + ], + [ + 106.351501465000069, + 13.388305664000029 + ], + [ + 106.351318359000061, + 13.392517090000069 + ], + [ + 106.350708008000083, + 13.396728516000053 + ], + [ + 106.350097656000059, + 13.400085449000073 + ], + [ + 106.358703613000046, + 13.401306152000075 + ], + [ + 106.366088867000087, + 13.402526855000076 + ], + [ + 106.371093750000057, + 13.403320312000062 + ], + [ + 106.374511719000054, + 13.403930664000029 + ], + [ + 106.377319336000085, + 13.404479980000076 + ], + [ + 106.380493164000086, + 13.405517578000058 + ], + [ + 106.384277344000054, + 13.406677246000072 + ], + [ + 106.387084961000085, + 13.407470703000058 + ], + [ + 106.390075684000067, + 13.408691406000059 + ], + [ + 106.393676758000083, + 13.410095215000069 + ], + [ + 106.404296875000057, + 13.414672852000024 + ], + [ + 106.419921875000057, + 13.417114258000026 + ], + [ + 106.425109863000046, + 13.414672852000024 + ], + [ + 106.435913086000085, + 13.408081055000025 + ], + [ + 106.446716309000067, + 13.401489258000026 + ], + [ + 106.44952392600004, + 13.399719238000046 + ], + [ + 106.453125, + 13.397705078000058 + ], + [ + 106.457885742000087, + 13.395080566000047 + ], + [ + 106.462280273000033, + 13.392700195000032 + ], + [ + 106.466308594000054, + 13.39093017600004 + ], + [ + 106.471313477000081, + 13.389282227000024 + ], + [ + 106.475708008000083, + 13.388122559000067 + ], + [ + 106.480529785000044, + 13.386108398000033 + ], + [ + 106.484130859000061, + 13.384277344000054 + ], + [ + 106.486877441000047, + 13.382690430000025 + ], + [ + 106.490478516000053, + 13.380310059000067 + ], + [ + 106.493530273000033, + 13.377685547000056 + ], + [ + 106.496520996000072, + 13.374877930000025 + ], + [ + 106.499694824000073, + 13.371276855000076 + ], + [ + 106.501892090000069, + 13.368530273000033 + ], + [ + 106.504089355000076, + 13.36608886700003 + ], + [ + 106.507080078000058, + 13.362487793000071 + ], + [ + 106.509887695000089, + 13.359130859000061 + ], + [ + 106.512084961000085, + 13.355285645000038 + ], + [ + 106.516479492000087, + 13.353881836000028 + ], + [ + 106.520080566000047, + 13.351501465000069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 4.4757240853000004, + "Shape_Area": 0.55544722815900005, + "ADM1_EN": "Oddar Meanchey", + "ADM1_PCODE": "KH22", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 103.692077637000068, + 14.438903809000067 + ], + [ + 103.696716309000067, + 14.436706543000071 + ], + [ + 103.700927734000061, + 14.434326172000056 + ], + [ + 103.704528809000067, + 14.43389892600004 + ], + [ + 103.707519531000059, + 14.43249511700003 + ], + [ + 103.708312988000046, + 14.428100586000028 + ], + [ + 103.707702637000068, + 14.422912598000039 + ], + [ + 103.707275391000053, + 14.418884277000075 + ], + [ + 103.707275391000053, + 14.415893555000025 + ], + [ + 103.706481934000067, + 14.412292480000076 + ], + [ + 103.703308105000076, + 14.409729004000042 + ], + [ + 103.702514648000033, + 14.404907227000024 + ], + [ + 103.702087402000075, + 14.39929199200003 + ], + [ + 103.700683594000054, + 14.394470215000069 + ], + [ + 103.700683594000054, + 14.390686035000044 + ], + [ + 103.703308105000076, + 14.38507080100004 + ], + [ + 103.706298828000058, + 14.381530762000068 + ], + [ + 103.709716797000056, + 14.379882812000062 + ], + [ + 103.713928223000039, + 14.380126953000058 + ], + [ + 103.718078613000046, + 14.380676270000038 + ], + [ + 103.721496582000043, + 14.381103516000053 + ], + [ + 103.725280762000068, + 14.38171386700003 + ], + [ + 103.727905273000033, + 14.383300781000059 + ], + [ + 103.731506348000039, + 14.385314941000047 + ], + [ + 103.735900879000042, + 14.382324219000054 + ], + [ + 103.739074707000043, + 14.379089355000076 + ], + [ + 103.742309570000032, + 14.377685547000056 + ], + [ + 103.745300293000071, + 14.377929687000062 + ], + [ + 103.748901367000087, + 14.374084473000039 + ], + [ + 103.752929687000062, + 14.372314453000058 + ], + [ + 103.755920410000044, + 14.37530517600004 + ], + [ + 103.759094238000046, + 14.377319336000028 + ], + [ + 103.762695312000062, + 14.374328613000046 + ], + [ + 103.765502930000082, + 14.371520996000072 + ], + [ + 103.768310547000056, + 14.368713379000042 + ], + [ + 103.771118164000086, + 14.366271973000039 + ], + [ + 103.774475098000039, + 14.364501953000058 + ], + [ + 103.775329590000069, + 14.361328125000057 + ], + [ + 103.778930664000086, + 14.361328125000057 + ], + [ + 103.782104492000087, + 14.363891602000024 + ], + [ + 103.786682129000042, + 14.366699219000054 + ], + [ + 103.790283203000058, + 14.366882324000073 + ], + [ + 103.794494629000042, + 14.366882324000073 + ], + [ + 103.798706055000082, + 14.368103027000075 + ], + [ + 103.802490234000061, + 14.369079590000069 + ], + [ + 103.803894043000071, + 14.36608886700003 + ], + [ + 103.803894043000071, + 14.363098145000038 + ], + [ + 103.803100586000085, + 14.360290527000075 + ], + [ + 103.803283691000047, + 14.356872559000067 + ], + [ + 103.807312012000068, + 14.355529785000044 + ], + [ + 103.811706543000071, + 14.355285645000038 + ], + [ + 103.815917969000054, + 14.355529785000044 + ], + [ + 103.818908691000047, + 14.355529785000044 + ], + [ + 103.822326660000044, + 14.354309082000043 + ], + [ + 103.826293945000032, + 14.353088379000042 + ], + [ + 103.830078125000057, + 14.354309082000043 + ], + [ + 103.828308105000076, + 14.356872559000067 + ], + [ + 103.829101562000062, + 14.360107422000056 + ], + [ + 103.830871582000043, + 14.363891602000024 + ], + [ + 103.833496094000054, + 14.368286133000026 + ], + [ + 103.837890625000057, + 14.371276855000076 + ], + [ + 103.841674805000082, + 14.371704102000024 + ], + [ + 103.844909668000071, + 14.371093750000057 + ], + [ + 103.848510742000087, + 14.370117187000062 + ], + [ + 103.852722168000071, + 14.368896484000061 + ], + [ + 103.856872559000067, + 14.368286133000026 + ], + [ + 103.860107422000056, + 14.367126465000069 + ], + [ + 103.862304687000062, + 14.364685059000067 + ], + [ + 103.861083984000061, + 14.361877441000047 + ], + [ + 103.861511230000076, + 14.357299805000025 + ], + [ + 103.864929199000073, + 14.35632324200003 + ], + [ + 103.868103027000075, + 14.354919434000067 + ], + [ + 103.870727539000086, + 14.351318359000061 + ], + [ + 103.872070312000062, + 14.347290039000029 + ], + [ + 103.875122070000032, + 14.346496582000043 + ], + [ + 103.878295898000033, + 14.343505859000061 + ], + [ + 103.881103516000053, + 14.339477539000029 + ], + [ + 103.884277344000054, + 14.339721680000025 + ], + [ + 103.886474609000061, + 14.343078613000046 + ], + [ + 103.890686035000044, + 14.343078613000046 + ], + [ + 103.895080566000047, + 14.343505859000061 + ], + [ + 103.899291992000087, + 14.345092773000033 + ], + [ + 103.900878906000059, + 14.342712402000075 + ], + [ + 103.90069580100004, + 14.338500977000024 + ], + [ + 103.904479980000076, + 14.338317871000072 + ], + [ + 103.907470703000058, + 14.338500977000024 + ], + [ + 103.911071777000075, + 14.337280273000033 + ], + [ + 103.914489746000072, + 14.336120605000076 + ], + [ + 103.919494629000042, + 14.336730957000043 + ], + [ + 103.923706055000082, + 14.336303711000028 + ], + [ + 103.926330566000047, + 14.334472656000059 + ], + [ + 103.928894043000071, + 14.332519531000059 + ], + [ + 103.932495117000087, + 14.331909180000025 + ], + [ + 103.936706543000071, + 14.332275391000053 + ], + [ + 103.941284180000082, + 14.330688477000024 + ], + [ + 103.946716309000067, + 14.332275391000053 + ], + [ + 103.946899414000086, + 14.336303711000028 + ], + [ + 103.945922852000081, + 14.340515137000068 + ], + [ + 103.946899414000086, + 14.344482422000056 + ], + [ + 103.948120117000087, + 14.347717285000044 + ], + [ + 103.950683594000054, + 14.350708008000026 + ], + [ + 103.954711914000086, + 14.350891113000046 + ], + [ + 103.958312988000046, + 14.350280762000068 + ], + [ + 103.962280273000033, + 14.34991455100004 + ], + [ + 103.966918945000032, + 14.350097656000059 + ], + [ + 103.971496582000043, + 14.34991455100004 + ], + [ + 103.975708008000083, + 14.352294922000056 + ], + [ + 103.979919434000067, + 14.354675293000071 + ], + [ + 103.98272705100004, + 14.354125977000024 + ], + [ + 103.985717773000033, + 14.350708008000026 + ], + [ + 103.988098145000038, + 14.346679687000062 + ], + [ + 103.991271973000039, + 14.346923828000058 + ], + [ + 103.994873047000056, + 14.345703125000057 + ], + [ + 103.998107910000044, + 14.349487305000025 + ], + [ + 104.000915527000075, + 14.353271484000061 + ], + [ + 104.004699707000043, + 14.356079102000024 + ], + [ + 104.009521484000061, + 14.355895996000072 + ], + [ + 104.010681152000075, + 14.352111816000047 + ], + [ + 104.010681152000075, + 14.348327637000068 + ], + [ + 104.012878418000071, + 14.345520020000038 + ], + [ + 104.016723633000083, + 14.342529297000056 + ], + [ + 104.021118164000086, + 14.341674805000025 + ], + [ + 104.025329590000069, + 14.341308594000054 + ], + [ + 104.030090332000043, + 14.339111328000058 + ], + [ + 104.034729004000042, + 14.340270996000072 + ], + [ + 104.039123535000044, + 14.341308594000054 + ], + [ + 104.043090820000032, + 14.341674805000025 + ], + [ + 104.045898437000062, + 14.341125488000046 + ], + [ + 104.049682617000087, + 14.341308594000054 + ], + [ + 104.053710937000062, + 14.342285156000059 + ], + [ + 104.058105469000054, + 14.344299316000047 + ], + [ + 104.062927246000072, + 14.343872070000032 + ], + [ + 104.067077637000068, + 14.342285156000059 + ], + [ + 104.071289062000062, + 14.343688965000069 + ], + [ + 104.074890137000068, + 14.345092773000033 + ], + [ + 104.078125, + 14.345275879000042 + ], + [ + 104.081909180000082, + 14.346130371000072 + ], + [ + 104.086120605000076, + 14.347290039000029 + ], + [ + 104.091125488000046, + 14.350280762000068 + ], + [ + 104.094482422000056, + 14.355529785000044 + ], + [ + 104.097290039000086, + 14.360717773000033 + ], + [ + 104.098083496000072, + 14.364929199000073 + ], + [ + 104.099487305000082, + 14.367675781000059 + ], + [ + 104.102722168000071, + 14.369079590000069 + ], + [ + 104.105712891000053, + 14.370117187000062 + ], + [ + 104.107482910000044, + 14.373474121000072 + ], + [ + 104.109130859000061, + 14.377929687000062 + ], + [ + 104.115112305000082, + 14.376281738000046 + ], + [ + 104.118286133000083, + 14.375671387000068 + ], + [ + 104.121093750000057, + 14.374328613000046 + ], + [ + 104.125122070000032, + 14.374511719000054 + ], + [ + 104.129272461000085, + 14.375671387000068 + ], + [ + 104.133728027000075, + 14.37530517600004 + ], + [ + 104.137512207000043, + 14.373291016000053 + ], + [ + 104.139526367000087, + 14.370910645000038 + ], + [ + 104.139709473000039, + 14.366271973000039 + ], + [ + 104.137878418000071, + 14.362121582000043 + ], + [ + 104.137329102000081, + 14.357910156000059 + ], + [ + 104.141113281000059, + 14.355712891000053 + ], + [ + 104.146301270000038, + 14.355102539000029 + ], + [ + 104.150329590000069, + 14.355529785000044 + ], + [ + 104.154479980000076, + 14.35632324200003 + ], + [ + 104.159484863000046, + 14.356689453000058 + ], + [ + 104.164672852000081, + 14.357116699000073 + ], + [ + 104.169677734000061, + 14.35772705100004 + ], + [ + 104.173889160000044, + 14.35968017600004 + ], + [ + 104.175109863000046, + 14.363525391000053 + ], + [ + 104.173095703000058, + 14.36749267600004 + ], + [ + 104.174682617000087, + 14.370483398000033 + ], + [ + 104.173889160000044, + 14.373474121000072 + ], + [ + 104.171081543000071, + 14.375671387000068 + ], + [ + 104.173095703000058, + 14.378112793000071 + ], + [ + 104.177673340000069, + 14.379882812000062 + ], + [ + 104.182312012000068, + 14.381530762000068 + ], + [ + 104.185119629000042, + 14.383728027000075 + ], + [ + 104.188110352000081, + 14.384704590000069 + ], + [ + 104.192687988000046, + 14.382873535000044 + ], + [ + 104.195495605000076, + 14.382080078000058 + ], + [ + 104.198303223000039, + 14.383483887000068 + ], + [ + 104.200683594000054, + 14.381896973000039 + ], + [ + 104.203308105000076, + 14.378295898000033 + ], + [ + 104.205322266000053, + 14.374084473000039 + ], + [ + 104.207702637000068, + 14.370910645000038 + ], + [ + 104.211120605000076, + 14.368286133000026 + ], + [ + 104.214294434000067, + 14.367675781000059 + ], + [ + 104.218078613000046, + 14.367675781000059 + ], + [ + 104.221313477000081, + 14.368530273000033 + ], + [ + 104.224304199000073, + 14.369506836000028 + ], + [ + 104.227111816000047, + 14.370117187000062 + ], + [ + 104.229919434000067, + 14.370727539000029 + ], + [ + 104.234313965000069, + 14.372314453000058 + ], + [ + 104.237915039000086, + 14.37390136700003 + ], + [ + 104.241271973000039, + 14.37530517600004 + ], + [ + 104.244689941000047, + 14.376098633000026 + ], + [ + 104.247314453000058, + 14.377502441000047 + ], + [ + 104.249694824000073, + 14.380126953000058 + ], + [ + 104.251281738000046, + 14.383911133000026 + ], + [ + 104.253112793000071, + 14.386901855000076 + ], + [ + 104.252502441000047, + 14.391113281000059 + ], + [ + 104.256286621000072, + 14.393493652000075 + ], + [ + 104.258911133000083, + 14.395507812000062 + ], + [ + 104.260314941000047, + 14.398925781000059 + ], + [ + 104.264892578000058, + 14.399902344000054 + ], + [ + 104.268676758000083, + 14.401489258000026 + ], + [ + 104.271728516000053, + 14.405273437000062 + ], + [ + 104.276123047000056, + 14.408325195000032 + ], + [ + 104.279479980000076, + 14.406677246000072 + ], + [ + 104.281921387000068, + 14.403930664000029 + ], + [ + 104.286071777000075, + 14.400085449000073 + ], + [ + 104.291076660000044, + 14.399902344000054 + ], + [ + 104.293518066000047, + 14.398071289000029 + ], + [ + 104.295471191000047, + 14.395690918000071 + ], + [ + 104.297729492000087, + 14.39288330100004 + ], + [ + 104.300720215000069, + 14.389099121000072 + ], + [ + 104.303283691000047, + 14.386474609000061 + ], + [ + 104.306518555000082, + 14.383728027000075 + ], + [ + 104.310302734000061, + 14.38171386700003 + ], + [ + 104.313720703000058, + 14.381896973000039 + ], + [ + 104.316894531000059, + 14.379699707000043 + ], + [ + 104.320129395000038, + 14.376708984000061 + ], + [ + 104.322509766000053, + 14.37390136700003 + ], + [ + 104.326110840000069, + 14.373291016000053 + ], + [ + 104.329711914000086, + 14.371093750000057 + ], + [ + 104.333496094000054, + 14.371704102000024 + ], + [ + 104.337280273000033, + 14.370117187000062 + ], + [ + 104.340087891000053, + 14.368896484000061 + ], + [ + 104.345886230000076, + 14.368713379000042 + ], + [ + 104.349670410000044, + 14.368530273000033 + ], + [ + 104.352722168000071, + 14.368713379000042 + ], + [ + 104.356872559000067, + 14.370300293000071 + ], + [ + 104.360473633000083, + 14.373474121000072 + ], + [ + 104.364318848000039, + 14.374328613000046 + ], + [ + 104.367126465000069, + 14.375122070000032 + ], + [ + 104.371093750000057, + 14.377502441000047 + ], + [ + 104.375488281000059, + 14.382507324000073 + ], + [ + 104.377929687000062, + 14.379272461000028 + ], + [ + 104.380493164000086, + 14.376892090000069 + ], + [ + 104.383300781000059, + 14.375122070000032 + ], + [ + 104.385925293000071, + 14.372070312000062 + ], + [ + 104.389892578000058, + 14.373474121000072 + ], + [ + 104.394897461000085, + 14.374694824000073 + ], + [ + 104.399719238000046, + 14.373291016000053 + ], + [ + 104.401489258000083, + 14.369323730000076 + ], + [ + 104.405273437000062, + 14.366271973000039 + ], + [ + 104.408874512000068, + 14.367309570000032 + ], + [ + 104.411682129000042, + 14.370300293000071 + ], + [ + 104.415710449000073, + 14.371704102000024 + ], + [ + 104.419128418000071, + 14.370117187000062 + ], + [ + 104.422119141000053, + 14.369079590000069 + ], + [ + 104.425903320000032, + 14.368286133000026 + ], + [ + 104.429870605000076, + 14.364318848000039 + ], + [ + 104.432922363000046, + 14.359924316000047 + ], + [ + 104.436706543000071, + 14.358093262000068 + ], + [ + 104.439697266000053, + 14.358520508000026 + ], + [ + 104.443481445000032, + 14.358520508000026 + ], + [ + 104.446899414000086, + 14.356872559000067 + ], + [ + 104.450317383000083, + 14.356689453000058 + ], + [ + 104.453308105000076, + 14.35827636700003 + ], + [ + 104.456481934000067, + 14.360717773000033 + ], + [ + 104.460083008000083, + 14.360473633000026 + ], + [ + 104.463317871000072, + 14.358093262000068 + ], + [ + 104.464111328000058, + 14.355285645000038 + ], + [ + 104.463500977000081, + 14.351501465000069 + ], + [ + 104.462097168000071, + 14.346923828000058 + ], + [ + 104.466308594000054, + 14.345092773000033 + ], + [ + 104.467285156000059, + 14.342285156000059 + ], + [ + 104.465881348000039, + 14.336730957000043 + ], + [ + 104.465881348000039, + 14.333496094000054 + ], + [ + 104.465515137000068, + 14.32647705100004 + ], + [ + 104.464904785000044, + 14.320922852000024 + ], + [ + 104.463684082000043, + 14.31530761700003 + ], + [ + 104.461730957000043, + 14.310485840000069 + ], + [ + 104.460510254000042, + 14.306701660000044 + ], + [ + 104.45928955100004, + 14.303894043000071 + ], + [ + 104.458129883000083, + 14.30108642600004 + ], + [ + 104.457275391000053, + 14.297485352000024 + ], + [ + 104.457275391000053, + 14.294311523000033 + ], + [ + 104.456298828000058, + 14.290100098000039 + ], + [ + 104.456909180000082, + 14.285278320000032 + ], + [ + 104.456115723000039, + 14.28210449200003 + ], + [ + 104.457702637000068, + 14.278320312000062 + ], + [ + 104.455871582000043, + 14.272888184000067 + ], + [ + 104.456909180000082, + 14.26788330100004 + ], + [ + 104.457275391000053, + 14.263488770000038 + ], + [ + 104.455871582000043, + 14.259277344000054 + ], + [ + 104.459716797000056, + 14.256530762000068 + ], + [ + 104.461914062000062, + 14.251098633000026 + ], + [ + 104.461914062000062, + 14.247680664000029 + ], + [ + 104.462097168000071, + 14.244323730000076 + ], + [ + 104.461486816000047, + 14.24108886700003 + ], + [ + 104.463317871000072, + 14.238098145000038 + ], + [ + 104.462890625000057, + 14.233703613000046 + ], + [ + 104.460083008000083, + 14.228881836000028 + ], + [ + 104.458679199000073, + 14.223876953000058 + ], + [ + 104.457092285000044, + 14.219482422000056 + ], + [ + 104.457885742000087, + 14.215881348000039 + ], + [ + 104.456726074000073, + 14.212890625000057 + ], + [ + 104.452514648000033, + 14.210876465000069 + ], + [ + 104.448730469000054, + 14.211303711000028 + ], + [ + 104.444274902000075, + 14.211303711000028 + ], + [ + 104.442077637000068, + 14.208923340000069 + ], + [ + 104.443481445000032, + 14.204711914000029 + ], + [ + 104.445129395000038, + 14.200927734000061 + ], + [ + 104.449279785000044, + 14.19952392600004 + ], + [ + 104.45147705100004, + 14.197692871000072 + ], + [ + 104.452087402000075, + 14.194091797000056 + ], + [ + 104.453918457000043, + 14.190917969000054 + ], + [ + 104.457275391000053, + 14.188903809000067 + ], + [ + 104.459472656000059, + 14.185119629000042 + ], + [ + 104.460876465000069, + 14.180480957000043 + ], + [ + 104.462707520000038, + 14.178100586000028 + ], + [ + 104.466918945000032, + 14.177124023000033 + ], + [ + 104.470703125000057, + 14.174499512000068 + ], + [ + 104.472900391000053, + 14.168884277000075 + ], + [ + 104.476684570000032, + 14.166076660000044 + ], + [ + 104.480285645000038, + 14.164672852000024 + ], + [ + 104.483520508000083, + 14.161682129000042 + ], + [ + 104.487121582000043, + 14.160888672000056 + ], + [ + 104.488525391000053, + 14.158081055000025 + ], + [ + 104.49249267600004, + 14.156311035000044 + ], + [ + 104.497070312000062, + 14.155273437000062 + ], + [ + 104.499511719000054, + 14.153320312000062 + ], + [ + 104.502929687000062, + 14.151306152000075 + ], + [ + 104.505493164000086, + 14.148315430000025 + ], + [ + 104.507507324000073, + 14.145324707000043 + ], + [ + 104.506530762000068, + 14.140075684000067 + ], + [ + 104.502319336000085, + 14.138122559000067 + ], + [ + 104.499694824000073, + 14.135314941000047 + ], + [ + 104.499328613000046, + 14.132080078000058 + ], + [ + 104.495483398000033, + 14.130310059000067 + ], + [ + 104.492126465000069, + 14.127075195000032 + ], + [ + 104.489929199000073, + 14.123291016000053 + ], + [ + 104.486877441000047, + 14.120300293000071 + ], + [ + 104.483520508000083, + 14.119323730000076 + ], + [ + 104.480712891000053, + 14.11749267600004 + ], + [ + 104.478271484000061, + 14.114685059000067 + ], + [ + 104.475891113000046, + 14.110290527000075 + ], + [ + 104.472473145000038, + 14.106689453000058 + ], + [ + 104.469116211000085, + 14.105895996000072 + ], + [ + 104.467529297000056, + 14.103515625000057 + ], + [ + 104.465087891000053, + 14.101074219000054 + ], + [ + 104.462890625000057, + 14.098083496000072 + ], + [ + 104.45928955100004, + 14.094909668000071 + ], + [ + 104.456481934000067, + 14.091491699000073 + ], + [ + 104.456481934000067, + 14.087707520000038 + ], + [ + 104.453125, + 14.083129883000026 + ], + [ + 104.451293945000032, + 14.078674316000047 + ], + [ + 104.448303223000039, + 14.076110840000069 + ], + [ + 104.444091797000056, + 14.07452392600004 + ], + [ + 104.440124512000068, + 14.07312011700003 + ], + [ + 104.438110352000081, + 14.069519043000071 + ], + [ + 104.436706543000071, + 14.066284180000025 + ], + [ + 104.436096191000047, + 14.063110352000024 + ], + [ + 104.435119629000042, + 14.059875488000046 + ], + [ + 104.434082031000059, + 14.056701660000044 + ], + [ + 104.433288574000073, + 14.052490234000061 + ], + [ + 104.432922363000046, + 14.049499512000068 + ], + [ + 104.430480957000043, + 14.046875 + ], + [ + 104.430480957000043, + 14.043884277000075 + ], + [ + 104.430480957000043, + 14.040893555000025 + ], + [ + 104.429321289000086, + 14.037902832000043 + ], + [ + 104.429077148000033, + 14.034912109000061 + ], + [ + 104.430114746000072, + 14.031311035000044 + ], + [ + 104.429321289000086, + 14.026672363000046 + ], + [ + 104.42608642600004, + 14.024475098000039 + ], + [ + 104.423278809000067, + 14.023498535000044 + ], + [ + 104.423889160000044, + 14.020324707000043 + ], + [ + 104.425109863000046, + 14.017089844000054 + ], + [ + 104.425109863000046, + 14.013671875000057 + ], + [ + 104.423522949000073, + 14.010925293000071 + ], + [ + 104.420715332000043, + 14.008300781000059 + ], + [ + 104.419311523000033, + 14.005493164000029 + ], + [ + 104.418701172000056, + 14.001708984000061 + ], + [ + 104.417907715000069, + 13.997924805000025 + ], + [ + 104.417724609000061, + 13.994506836000028 + ], + [ + 104.419311523000033, + 13.991271973000039 + ], + [ + 104.421325684000067, + 13.988098145000038 + ], + [ + 104.423095703000058, + 13.985290527000075 + ], + [ + 104.424316406000059, + 13.981079102000024 + ], + [ + 104.426696777000075, + 13.977294922000056 + ], + [ + 104.427673340000069, + 13.973083496000072 + ], + [ + 104.427124023000033, + 13.970275879000042 + ], + [ + 104.42608642600004, + 13.967285156000059 + ], + [ + 104.425476074000073, + 13.962890625000057 + ], + [ + 104.423889160000044, + 13.959106445000032 + ], + [ + 104.420104980000076, + 13.957092285000044 + ], + [ + 104.421081543000071, + 13.952697754000042 + ], + [ + 104.422912598000039, + 13.948913574000073 + ], + [ + 104.422302246000072, + 13.945678711000028 + ], + [ + 104.421508789000086, + 13.942687988000046 + ], + [ + 104.421875, + 13.938903809000067 + ], + [ + 104.419677734000061, + 13.936096191000047 + ], + [ + 104.41632080100004, + 13.934875488000046 + ], + [ + 104.414672852000081, + 13.937927246000072 + ], + [ + 104.413513184000067, + 13.942077637000068 + ], + [ + 104.411071777000075, + 13.946716309000067 + ], + [ + 104.40850830100004, + 13.950317383000026 + ], + [ + 104.406921387000068, + 13.952697754000042 + ], + [ + 104.403320312000062, + 13.953918457000043 + ], + [ + 104.399719238000046, + 13.956115723000039 + ], + [ + 104.396484375000057, + 13.958679199000073 + ], + [ + 104.393676758000083, + 13.960876465000069 + ], + [ + 104.39093017600004, + 13.962524414000029 + ], + [ + 104.387695312000062, + 13.961303711000028 + ], + [ + 104.383911133000083, + 13.961914062000062 + ], + [ + 104.380493164000086, + 13.960510254000042 + ], + [ + 104.377502441000047, + 13.960876465000069 + ], + [ + 104.373718262000068, + 13.961120605000076 + ], + [ + 104.368896484000061, + 13.961120605000076 + ], + [ + 104.364318848000039, + 13.962707520000038 + ], + [ + 104.360290527000075, + 13.964477539000029 + ], + [ + 104.356323242000087, + 13.962280273000033 + ], + [ + 104.353515625000057, + 13.95928955100004 + ], + [ + 104.351318359000061, + 13.956481934000067 + ], + [ + 104.348693848000039, + 13.953674316000047 + ], + [ + 104.344726562000062, + 13.954284668000071 + ], + [ + 104.340698242000087, + 13.956298828000058 + ], + [ + 104.336914062000062, + 13.957702637000068 + ], + [ + 104.333923340000069, + 13.958129883000026 + ], + [ + 104.330871582000043, + 13.958129883000026 + ], + [ + 104.327087402000075, + 13.957702637000068 + ], + [ + 104.323486328000058, + 13.956909180000025 + ], + [ + 104.319885254000042, + 13.956726074000073 + ], + [ + 104.316284180000082, + 13.956298828000058 + ], + [ + 104.312072754000042, + 13.955078125000057 + ], + [ + 104.308715820000032, + 13.955688477000024 + ], + [ + 104.304870605000076, + 13.955688477000024 + ], + [ + 104.301513672000056, + 13.956726074000073 + ], + [ + 104.298095703000058, + 13.958312988000046 + ], + [ + 104.294311523000033, + 13.95928955100004 + ], + [ + 104.290893555000082, + 13.960083008000026 + ], + [ + 104.287109375000057, + 13.959106445000032 + ], + [ + 104.282470703000058, + 13.958923340000069 + ], + [ + 104.278686523000033, + 13.957275391000053 + ], + [ + 104.275085449000073, + 13.954895020000038 + ], + [ + 104.272705078000058, + 13.952697754000042 + ], + [ + 104.270080566000047, + 13.955078125000057 + ], + [ + 104.266906738000046, + 13.957519531000059 + ], + [ + 104.264099121000072, + 13.958312988000046 + ], + [ + 104.260681152000075, + 13.95788574200003 + ], + [ + 104.257324219000054, + 13.956481934000067 + ], + [ + 104.254516602000081, + 13.954895020000038 + ], + [ + 104.251281738000046, + 13.952270508000026 + ], + [ + 104.247924805000082, + 13.95007324200003 + ], + [ + 104.244873047000056, + 13.948303223000039 + ], + [ + 104.242675781000059, + 13.945678711000028 + ], + [ + 104.240478516000053, + 13.942871094000054 + ], + [ + 104.234313965000069, + 13.94030761700003 + ], + [ + 104.229125977000081, + 13.937683105000076 + ], + [ + 104.225891113000046, + 13.934326172000056 + ], + [ + 104.221679687000062, + 13.932922363000046 + ], + [ + 104.219726562000062, + 13.930725098000039 + ], + [ + 104.216125488000046, + 13.928283691000047 + ], + [ + 104.212524414000086, + 13.929687500000057 + ], + [ + 104.209899902000075, + 13.930908203000058 + ], + [ + 104.204711914000086, + 13.931091309000067 + ], + [ + 104.199707031000059, + 13.931701660000044 + ], + [ + 104.195922852000081, + 13.93249511700003 + ], + [ + 104.191894531000059, + 13.934509277000075 + ], + [ + 104.187316895000038, + 13.937072754000042 + ], + [ + 104.185913086000085, + 13.94171142600004 + ], + [ + 104.181091309000067, + 13.946289062000062 + ], + [ + 104.177490234000061, + 13.948730469000054 + ], + [ + 104.174682617000087, + 13.951721191000047 + ], + [ + 104.170288086000085, + 13.953674316000047 + ], + [ + 104.167114258000083, + 13.955078125000057 + ], + [ + 104.162902832000043, + 13.956298828000058 + ], + [ + 104.158081055000082, + 13.957519531000059 + ], + [ + 104.152893066000047, + 13.958312988000046 + ], + [ + 104.147888184000067, + 13.959716797000056 + ], + [ + 104.143493652000075, + 13.959106445000032 + ], + [ + 104.138488770000038, + 13.958923340000069 + ], + [ + 104.133300781000059, + 13.958496094000054 + ], + [ + 104.126281738000046, + 13.957519531000059 + ], + [ + 104.119506836000085, + 13.955688477000024 + ], + [ + 104.111511230000076, + 13.954895020000038 + ], + [ + 104.110900879000042, + 13.959899902000075 + ], + [ + 104.112121582000043, + 13.963500977000024 + ], + [ + 104.112915039000086, + 13.966674805000025 + ], + [ + 104.038513184000067, + 13.967529297000056 + ], + [ + 103.995483398000033, + 13.96710205100004 + ], + [ + 103.954528809000067, + 13.966918945000032 + ], + [ + 103.931701660000044, + 13.967285156000059 + ], + [ + 103.888305664000086, + 13.965515137000068 + ], + [ + 103.848083496000072, + 13.966491699000073 + ], + [ + 103.829711914000086, + 13.966308594000054 + ], + [ + 103.79327392600004, + 13.966308594000054 + ], + [ + 103.745483398000033, + 13.966125488000046 + ], + [ + 103.688720703000058, + 13.964904785000044 + ], + [ + 103.681884766000053, + 13.960327148000033 + ], + [ + 103.677124023000033, + 13.961120605000076 + ], + [ + 103.672302246000072, + 13.962097168000071 + ], + [ + 103.667480469000054, + 13.963684082000043 + ], + [ + 103.665100098000039, + 13.965270996000072 + ], + [ + 103.661499023000033, + 13.964904785000044 + ], + [ + 103.662719727000081, + 13.968688965000069 + ], + [ + 103.657470703000058, + 13.968505859000061 + ], + [ + 103.653503418000071, + 13.968322754000042 + ], + [ + 103.651489258000083, + 13.970886230000076 + ], + [ + 103.649108887000068, + 13.969116211000028 + ], + [ + 103.646484375000057, + 13.966491699000073 + ], + [ + 103.646911621000072, + 13.963317871000072 + ], + [ + 103.643127441000047, + 13.96569824200003 + ], + [ + 103.640502930000082, + 13.969116211000028 + ], + [ + 103.637512207000043, + 13.969482422000056 + ], + [ + 103.635498047000056, + 13.971679687000062 + ], + [ + 103.632507324000073, + 13.969482422000056 + ], + [ + 103.632507324000073, + 13.966125488000046 + ], + [ + 103.629516602000081, + 13.966674805000025 + ], + [ + 103.626892090000069, + 13.964111328000058 + ], + [ + 103.629882812000062, + 13.961730957000043 + ], + [ + 103.624511719000054, + 13.95928955100004 + ], + [ + 103.619689941000047, + 13.961914062000062 + ], + [ + 103.619689941000047, + 13.958496094000054 + ], + [ + 103.619689941000047, + 13.954711914000029 + ], + [ + 103.616699219000054, + 13.954895020000038 + ], + [ + 103.617675781000059, + 13.95147705100004 + ], + [ + 103.616088867000087, + 13.949096680000025 + ], + [ + 103.613708496000072, + 13.947509766000053 + ], + [ + 103.609313965000069, + 13.946716309000067 + ], + [ + 103.605285645000038, + 13.945922852000024 + ], + [ + 103.603271484000061, + 13.941528320000032 + ], + [ + 103.599304199000073, + 13.937927246000072 + ], + [ + 103.596313477000081, + 13.935913086000028 + ], + [ + 103.593505859000061, + 13.933288574000073 + ], + [ + 103.593688965000069, + 13.929077148000033 + ], + [ + 103.592712402000075, + 13.92608642600004 + ], + [ + 103.589111328000058, + 13.929504395000038 + ], + [ + 103.585327148000033, + 13.929504395000038 + ], + [ + 103.582519531000059, + 13.927917480000076 + ], + [ + 103.578674316000047, + 13.926513672000056 + ], + [ + 103.578308105000076, + 13.922485352000024 + ], + [ + 103.579895020000038, + 13.920104980000076 + ], + [ + 103.576293945000032, + 13.91827392600004 + ], + [ + 103.572692871000072, + 13.915100098000039 + ], + [ + 103.568725586000085, + 13.916687012000068 + ], + [ + 103.568481445000032, + 13.913330078000058 + ], + [ + 103.570312500000057, + 13.909729004000042 + ], + [ + 103.568115234000061, + 13.905883789000029 + ], + [ + 103.565673828000058, + 13.907470703000058 + ], + [ + 103.5625, + 13.907714844000054 + ], + [ + 103.559082031000059, + 13.906921387000068 + ], + [ + 103.556274414000086, + 13.90850830100004 + ], + [ + 103.556274414000086, + 13.905273437000062 + ], + [ + 103.554504395000038, + 13.901916504000042 + ], + [ + 103.552307129000042, + 13.905273437000062 + ], + [ + 103.548706055000082, + 13.904724121000072 + ], + [ + 103.547729492000087, + 13.901672363000046 + ], + [ + 103.544677734000061, + 13.901489258000026 + ], + [ + 103.540283203000058, + 13.899719238000046 + ], + [ + 103.537475586000085, + 13.896484375000057 + ], + [ + 103.533691406000059, + 13.898925781000059 + ], + [ + 103.531921387000068, + 13.902526855000076 + ], + [ + 103.530090332000043, + 13.897705078000058 + ], + [ + 103.526123047000056, + 13.897094727000024 + ], + [ + 103.523315430000082, + 13.898315430000025 + ], + [ + 103.518920898000033, + 13.896728516000053 + ], + [ + 103.516296387000068, + 13.899902344000054 + ], + [ + 103.512878418000071, + 13.900085449000073 + ], + [ + 103.509704590000069, + 13.898925781000059 + ], + [ + 103.505493164000086, + 13.899719238000046 + ], + [ + 103.501281738000046, + 13.89929199200003 + ], + [ + 103.497497559000067, + 13.900329590000069 + ], + [ + 103.493896484000061, + 13.900085449000073 + ], + [ + 103.488708496000072, + 13.899902344000054 + ], + [ + 103.48468017600004, + 13.900329590000069 + ], + [ + 103.480712891000053, + 13.901916504000042 + ], + [ + 103.477905273000033, + 13.89929199200003 + ], + [ + 103.476501465000069, + 13.895080566000047 + ], + [ + 103.473510742000087, + 13.893127441000047 + ], + [ + 103.470092773000033, + 13.892272949000073 + ], + [ + 103.467712402000075, + 13.894714355000076 + ], + [ + 103.465087891000053, + 13.893493652000075 + ], + [ + 103.460510254000042, + 13.892089844000054 + ], + [ + 103.456909180000082, + 13.889709473000039 + ], + [ + 103.454711914000086, + 13.887084961000028 + ], + [ + 103.451110840000069, + 13.885925293000071 + ], + [ + 103.448486328000058, + 13.883300781000059 + ], + [ + 103.444519043000071, + 13.883728027000075 + ], + [ + 103.444091797000056, + 13.880126953000058 + ], + [ + 103.440673828000058, + 13.877502441000047 + ], + [ + 103.438476562000062, + 13.880310059000067 + ], + [ + 103.433105469000054, + 13.879516602000024 + ], + [ + 103.434692383000083, + 13.883483887000068 + ], + [ + 103.434692383000083, + 13.888488770000038 + ], + [ + 103.435302734000061, + 13.891723633000026 + ], + [ + 103.438110352000081, + 13.891113281000059 + ], + [ + 103.439086914000086, + 13.895324707000043 + ], + [ + 103.442321777000075, + 13.898925781000059 + ], + [ + 103.439880371000072, + 13.901672363000046 + ], + [ + 103.436889648000033, + 13.904113770000038 + ], + [ + 103.439086914000086, + 13.906494141000053 + ], + [ + 103.436889648000033, + 13.910278320000032 + ], + [ + 103.440307617000087, + 13.911682129000042 + ], + [ + 103.440673828000058, + 13.91632080100004 + ], + [ + 103.437683105000076, + 13.917480469000054 + ], + [ + 103.434875488000046, + 13.918884277000075 + ], + [ + 103.429077148000033, + 13.919311523000033 + ], + [ + 103.426330566000047, + 13.919921875000057 + ], + [ + 103.423522949000073, + 13.921508789000029 + ], + [ + 103.420715332000043, + 13.922912598000039 + ], + [ + 103.418090820000032, + 13.924316406000059 + ], + [ + 103.415100098000039, + 13.926513672000056 + ], + [ + 103.411315918000071, + 13.928527832000043 + ], + [ + 103.407287598000039, + 13.928710937000062 + ], + [ + 103.402099609000061, + 13.929321289000029 + ], + [ + 103.397277832000043, + 13.930908203000058 + ], + [ + 103.393127441000047, + 13.931701660000044 + ], + [ + 103.390075684000067, + 13.932678223000039 + ], + [ + 103.386901855000076, + 13.935119629000042 + ], + [ + 103.383911133000083, + 13.938720703000058 + ], + [ + 103.380920410000044, + 13.942321777000075 + ], + [ + 103.378906250000057, + 13.945129395000038 + ], + [ + 103.375671387000068, + 13.94952392600004 + ], + [ + 103.372314453000058, + 13.954284668000071 + ], + [ + 103.369323730000076, + 13.958312988000046 + ], + [ + 103.366516113000046, + 13.961914062000062 + ], + [ + 103.364074707000043, + 13.965087891000053 + ], + [ + 103.361877441000047, + 13.968688965000069 + ], + [ + 103.358703613000046, + 13.973876953000058 + ], + [ + 103.356872559000067, + 13.977294922000056 + ], + [ + 103.354919434000067, + 13.980712891000053 + ], + [ + 103.352905273000033, + 13.984130859000061 + ], + [ + 103.349121094000054, + 13.990905762000068 + ], + [ + 103.347106934000067, + 13.994323730000076 + ], + [ + 103.345092773000033, + 13.997680664000029 + ], + [ + 103.343688965000069, + 14.00030517600004 + ], + [ + 103.341491699000073, + 14.002319336000028 + ], + [ + 103.332885742000087, + 14.015075684000067 + ], + [ + 103.331909180000082, + 14.018920898000033 + ], + [ + 103.331298828000058, + 14.022277832000043 + ], + [ + 103.328491211000085, + 14.02569580100004 + ], + [ + 103.325073242000087, + 14.022521973000039 + ], + [ + 103.321716309000067, + 14.018310547000056 + ], + [ + 103.318481445000032, + 14.014709473000039 + ], + [ + 103.316101074000073, + 14.011718750000057 + ], + [ + 103.314514160000044, + 14.009277344000054 + ], + [ + 103.312683105000076, + 14.006530762000068 + ], + [ + 103.309875488000046, + 14.002502441000047 + ], + [ + 103.300720215000069, + 13.991699219000054 + ], + [ + 103.294311523000033, + 13.98468017600004 + ], + [ + 103.286926270000038, + 13.976501465000069 + ], + [ + 103.280273437000062, + 13.969116211000028 + ], + [ + 103.277709961000085, + 13.966308594000054 + ], + [ + 103.274475098000039, + 13.963073730000076 + ], + [ + 103.271118164000086, + 13.960510254000042 + ], + [ + 103.267089844000054, + 13.956909180000025 + ], + [ + 103.264526367000087, + 13.955078125000057 + ], + [ + 103.260925293000071, + 13.953491211000028 + ], + [ + 103.257507324000073, + 13.952697754000042 + ], + [ + 103.253723145000038, + 13.952087402000075 + ], + [ + 103.250488281000059, + 13.95147705100004 + ], + [ + 103.247070312000062, + 13.951293945000032 + ], + [ + 103.244079590000069, + 13.95147705100004 + ], + [ + 103.238098145000038, + 13.950927734000061 + ], + [ + 103.218872070000032, + 13.95007324200003 + ], + [ + 103.212707520000038, + 13.94812011700003 + ], + [ + 103.207275391000053, + 13.944885254000042 + ], + [ + 103.204101562000062, + 13.939270020000038 + ], + [ + 103.201721191000047, + 13.942321777000075 + ], + [ + 103.198120117000087, + 13.949890137000068 + ], + [ + 103.191894531000059, + 13.960693359000061 + ], + [ + 103.181091309000067, + 13.977294922000056 + ], + [ + 103.171081543000071, + 13.993713379000042 + ], + [ + 103.170471191000047, + 13.996887207000043 + ], + [ + 103.171508789000086, + 14.000915527000075 + ], + [ + 103.175476074000073, + 14.002502441000047 + ], + [ + 103.180114746000072, + 14.005310059000067 + ], + [ + 103.183715820000032, + 14.008300781000059 + ], + [ + 103.186889648000033, + 14.011291504000042 + ], + [ + 103.187927246000072, + 14.01452636700003 + ], + [ + 103.189514160000044, + 14.017272949000073 + ], + [ + 103.191284180000082, + 14.020324707000043 + ], + [ + 103.192871094000054, + 14.023315430000025 + ], + [ + 103.193908691000047, + 14.027099609000061 + ], + [ + 103.194702148000033, + 14.031921387000068 + ], + [ + 103.195678711000085, + 14.036071777000075 + ], + [ + 103.195678711000085, + 14.039123535000044 + ], + [ + 103.194519043000071, + 14.04187011700003 + ], + [ + 103.191894531000059, + 14.045104980000076 + ], + [ + 103.189270020000038, + 14.047485352000024 + ], + [ + 103.186889648000033, + 14.050476074000073 + ], + [ + 103.186889648000033, + 14.054504395000038 + ], + [ + 103.189514160000044, + 14.05749511700003 + ], + [ + 103.192077637000068, + 14.05889892600004 + ], + [ + 103.194274902000075, + 14.060913086000028 + ], + [ + 103.197692871000072, + 14.064086914000029 + ], + [ + 103.200317383000083, + 14.068725586000028 + ], + [ + 103.200500488000046, + 14.072875977000024 + ], + [ + 103.20147705100004, + 14.076293945000032 + ], + [ + 103.201293945000032, + 14.079711914000029 + ], + [ + 103.200317383000083, + 14.083679199000073 + ], + [ + 103.203308105000076, + 14.087524414000029 + ], + [ + 103.205078125000057, + 14.09069824200003 + ], + [ + 103.206298828000058, + 14.093505859000061 + ], + [ + 103.207702637000068, + 14.097900391000053 + ], + [ + 103.208923340000069, + 14.102111816000047 + ], + [ + 103.210083008000083, + 14.105712891000053 + ], + [ + 103.210327148000033, + 14.109313965000069 + ], + [ + 103.207092285000044, + 14.109130859000061 + ], + [ + 103.203491211000085, + 14.10772705100004 + ], + [ + 103.197875977000081, + 14.108703613000046 + ], + [ + 103.194091797000056, + 14.108520508000026 + ], + [ + 103.190307617000087, + 14.107116699000073 + ], + [ + 103.186096191000047, + 14.106872559000067 + ], + [ + 103.183105469000054, + 14.106689453000058 + ], + [ + 103.179077148000033, + 14.106506348000039 + ], + [ + 103.175292969000054, + 14.106872559000067 + ], + [ + 103.171875, + 14.109130859000061 + ], + [ + 103.168090820000032, + 14.111083984000061 + ], + [ + 103.164306641000053, + 14.112121582000043 + ], + [ + 103.161071777000075, + 14.111511230000076 + ], + [ + 103.158081055000082, + 14.108703613000046 + ], + [ + 103.154479980000076, + 14.109924316000047 + ], + [ + 103.151916504000042, + 14.111877441000047 + ], + [ + 103.148925781000059, + 14.111328125000057 + ], + [ + 103.145507812000062, + 14.110717773000033 + ], + [ + 103.143127441000047, + 14.108703613000046 + ], + [ + 103.138916016000053, + 14.109497070000032 + ], + [ + 103.134277344000054, + 14.111328125000057 + ], + [ + 103.130493164000086, + 14.111877441000047 + ], + [ + 103.127319336000085, + 14.110473633000026 + ], + [ + 103.124328613000046, + 14.110107422000056 + ], + [ + 103.120727539000086, + 14.112304687000062 + ], + [ + 103.118286133000083, + 14.114501953000058 + ], + [ + 103.114929199000073, + 14.115722656000059 + ], + [ + 103.111328125000057, + 14.116271973000039 + ], + [ + 103.109313965000069, + 14.119689941000047 + ], + [ + 103.105285645000038, + 14.122070312000062 + ], + [ + 103.101928711000085, + 14.124511719000054 + ], + [ + 103.09991455100004, + 14.126892090000069 + ], + [ + 103.097290039000086, + 14.130310059000067 + ], + [ + 103.093322754000042, + 14.132080078000058 + ], + [ + 103.089477539000086, + 14.135498047000056 + ], + [ + 103.085693359000061, + 14.138671875000057 + ], + [ + 103.082702637000068, + 14.141113281000059 + ], + [ + 103.081481934000067, + 14.145080566000047 + ], + [ + 103.080505371000072, + 14.149719238000046 + ], + [ + 103.079528809000067, + 14.155273437000062 + ], + [ + 103.076904297000056, + 14.159729004000042 + ], + [ + 103.076110840000069, + 14.163513184000067 + ], + [ + 103.031921387000068, + 14.25030517600004 + ], + [ + 103.038696289000086, + 14.252502441000047 + ], + [ + 103.040710449000073, + 14.255126953000058 + ], + [ + 103.043090820000032, + 14.257873535000044 + ], + [ + 103.047119141000053, + 14.262084961000028 + ], + [ + 103.049682617000087, + 14.265502930000025 + ], + [ + 103.052307129000042, + 14.269470215000069 + ], + [ + 103.055297852000081, + 14.272277832000043 + ], + [ + 103.056884766000053, + 14.27569580100004 + ], + [ + 103.055908203000058, + 14.279296875000057 + ], + [ + 103.056274414000086, + 14.283325195000032 + ], + [ + 103.060729980000076, + 14.285095215000069 + ], + [ + 103.064697266000053, + 14.285888672000056 + ], + [ + 103.069519043000071, + 14.286071777000075 + ], + [ + 103.073913574000073, + 14.286071777000075 + ], + [ + 103.07647705100004, + 14.288330078000058 + ], + [ + 103.078674316000047, + 14.292480469000054 + ], + [ + 103.081115723000039, + 14.295715332000043 + ], + [ + 103.085083008000083, + 14.296508789000029 + ], + [ + 103.089294434000067, + 14.296325684000067 + ], + [ + 103.093872070000032, + 14.298278809000067 + ], + [ + 103.097717285000044, + 14.299499512000068 + ], + [ + 103.101318359000061, + 14.29968261700003 + ], + [ + 103.106689453000058, + 14.299926758000026 + ], + [ + 103.111877441000047, + 14.299926758000026 + ], + [ + 103.116516113000046, + 14.300292969000054 + ], + [ + 103.120910645000038, + 14.301696777000075 + ], + [ + 103.124877930000082, + 14.303527832000043 + ], + [ + 103.127502441000047, + 14.305114746000072 + ], + [ + 103.130310059000067, + 14.30749511700003 + ], + [ + 103.128723145000038, + 14.312316895000038 + ], + [ + 103.128112793000071, + 14.316894531000059 + ], + [ + 103.129699707000043, + 14.320312500000057 + ], + [ + 103.134094238000046, + 14.322082520000038 + ], + [ + 103.138305664000086, + 14.324279785000044 + ], + [ + 103.141906738000046, + 14.326110840000069 + ], + [ + 103.146118164000086, + 14.325317383000026 + ], + [ + 103.148925781000059, + 14.320495605000076 + ], + [ + 103.152893066000047, + 14.316528320000032 + ], + [ + 103.156494141000053, + 14.320312500000057 + ], + [ + 103.158081055000082, + 14.323486328000058 + ], + [ + 103.159484863000046, + 14.327880859000061 + ], + [ + 103.162109375000057, + 14.331726074000073 + ], + [ + 103.165893555000082, + 14.334106445000032 + ], + [ + 103.168884277000075, + 14.335083008000026 + ], + [ + 103.172912598000039, + 14.335693359000061 + ], + [ + 103.177673340000069, + 14.335327148000033 + ], + [ + 103.181091309000067, + 14.334899902000075 + ], + [ + 103.184692383000083, + 14.33428955100004 + ], + [ + 103.190490723000039, + 14.333129883000026 + ], + [ + 103.194091797000056, + 14.331726074000073 + ], + [ + 103.196899414000086, + 14.330505371000072 + ], + [ + 103.199096680000082, + 14.328125 + ], + [ + 103.204711914000086, + 14.327087402000075 + ], + [ + 103.208679199000073, + 14.328308105000076 + ], + [ + 103.213500977000081, + 14.328308105000076 + ], + [ + 103.217285156000059, + 14.325927734000061 + ], + [ + 103.219726562000062, + 14.323913574000073 + ], + [ + 103.223510742000087, + 14.325683594000054 + ], + [ + 103.227111816000047, + 14.327514648000033 + ], + [ + 103.229492187000062, + 14.329101562000062 + ], + [ + 103.23272705100004, + 14.331909180000025 + ], + [ + 103.237915039000086, + 14.336303711000028 + ], + [ + 103.246887207000043, + 14.338684082000043 + ], + [ + 103.251281738000046, + 14.341918945000032 + ], + [ + 103.255676270000038, + 14.344299316000047 + ], + [ + 103.259094238000046, + 14.347473145000038 + ], + [ + 103.261901855000076, + 14.350097656000059 + ], + [ + 103.264892578000058, + 14.350891113000046 + ], + [ + 103.268127441000047, + 14.350708008000026 + ], + [ + 103.275085449000073, + 14.349670410000044 + ], + [ + 103.281677246000072, + 14.348327637000068 + ], + [ + 103.287292480000076, + 14.349670410000044 + ], + [ + 103.290710449000073, + 14.350708008000026 + ], + [ + 103.298278809000067, + 14.352478027000075 + ], + [ + 103.312072754000042, + 14.355895996000072 + ], + [ + 103.316894531000059, + 14.356689453000058 + ], + [ + 103.321105957000043, + 14.354675293000071 + ], + [ + 103.325073242000087, + 14.352111816000047 + ], + [ + 103.331115723000039, + 14.351074219000054 + ], + [ + 103.334716797000056, + 14.354675293000071 + ], + [ + 103.336303711000085, + 14.358886719000054 + ], + [ + 103.340698242000087, + 14.360290527000075 + ], + [ + 103.345092773000033, + 14.356689453000058 + ], + [ + 103.348327637000068, + 14.354309082000043 + ], + [ + 103.352905273000033, + 14.352722168000071 + ], + [ + 103.358093262000068, + 14.352722168000071 + ], + [ + 103.364318848000039, + 14.352478027000075 + ], + [ + 103.36749267600004, + 14.352111816000047 + ], + [ + 103.370727539000086, + 14.352478027000075 + ], + [ + 103.375915527000075, + 14.352478027000075 + ], + [ + 103.380676270000038, + 14.352905273000033 + ], + [ + 103.384521484000061, + 14.354919434000067 + ], + [ + 103.387878418000071, + 14.355529785000044 + ], + [ + 103.391296387000068, + 14.356872559000067 + ], + [ + 103.395080566000047, + 14.35772705100004 + ], + [ + 103.398498535000044, + 14.357482910000044 + ], + [ + 103.402282715000069, + 14.358520508000026 + ], + [ + 103.401123047000056, + 14.362487793000071 + ], + [ + 103.399108887000068, + 14.366271973000039 + ], + [ + 103.400512695000032, + 14.369873047000056 + ], + [ + 103.408081055000082, + 14.370300293000071 + ], + [ + 103.412109375000057, + 14.371704102000024 + ], + [ + 103.414672852000081, + 14.377685547000056 + ], + [ + 103.417480469000054, + 14.381286621000072 + ], + [ + 103.420288086000085, + 14.383300781000059 + ], + [ + 103.424072266000053, + 14.385314941000047 + ], + [ + 103.427917480000076, + 14.386901855000076 + ], + [ + 103.431884766000053, + 14.38952636700003 + ], + [ + 103.436096191000047, + 14.390686035000044 + ], + [ + 103.438476562000062, + 14.388305664000029 + ], + [ + 103.439086914000086, + 14.385498047000056 + ], + [ + 103.439086914000086, + 14.381896973000039 + ], + [ + 103.441101074000073, + 14.379699707000043 + ], + [ + 103.446105957000043, + 14.381530762000068 + ], + [ + 103.446716309000067, + 14.378295898000033 + ], + [ + 103.447326660000044, + 14.375122070000032 + ], + [ + 103.448913574000073, + 14.371704102000024 + ], + [ + 103.450683594000054, + 14.368896484000061 + ], + [ + 103.453674316000047, + 14.368286133000026 + ], + [ + 103.457519531000059, + 14.367919922000056 + ], + [ + 103.462097168000071, + 14.366516113000046 + ], + [ + 103.466674805000082, + 14.365295410000044 + ], + [ + 103.470703125000057, + 14.369873047000056 + ], + [ + 103.471496582000043, + 14.374084473000039 + ], + [ + 103.473510742000087, + 14.376892090000069 + ], + [ + 103.476684570000032, + 14.377929687000062 + ], + [ + 103.479675293000071, + 14.378906250000057 + ], + [ + 103.481872559000067, + 14.38311767600004 + ], + [ + 103.485107422000056, + 14.387512207000043 + ], + [ + 103.489501953000058, + 14.386291504000042 + ], + [ + 103.493713379000042, + 14.386718750000057 + ], + [ + 103.496093750000057, + 14.389282227000024 + ], + [ + 103.496276855000076, + 14.403076172000056 + ], + [ + 103.496704102000081, + 14.406921387000068 + ], + [ + 103.498107910000044, + 14.411499023000033 + ], + [ + 103.503295898000033, + 14.413879395000038 + ], + [ + 103.508300781000059, + 14.414672852000024 + ], + [ + 103.512084961000085, + 14.415283203000058 + ], + [ + 103.515319824000073, + 14.41632080100004 + ], + [ + 103.518493652000075, + 14.417297363000046 + ], + [ + 103.522277832000043, + 14.417907715000069 + ], + [ + 103.525085449000073, + 14.418884277000075 + ], + [ + 103.527893066000047, + 14.420715332000043 + ], + [ + 103.531494141000053, + 14.422485352000024 + ], + [ + 103.534301758000083, + 14.424926758000026 + ], + [ + 103.537902832000043, + 14.42608642600004 + ], + [ + 103.54327392600004, + 14.426696777000075 + ], + [ + 103.548522949000073, + 14.427490234000061 + ], + [ + 103.553100586000085, + 14.429504395000038 + ], + [ + 103.556884766000053, + 14.431701660000044 + ], + [ + 103.560729980000076, + 14.432312012000068 + ], + [ + 103.564270020000038, + 14.431884766000053 + ], + [ + 103.568908691000047, + 14.43249511700003 + ], + [ + 103.573120117000087, + 14.431518555000025 + ], + [ + 103.577270508000083, + 14.432922363000046 + ], + [ + 103.582092285000044, + 14.432312012000068 + ], + [ + 103.586486816000047, + 14.431091309000067 + ], + [ + 103.591125488000046, + 14.429504395000038 + ], + [ + 103.594299316000047, + 14.426879883000026 + ], + [ + 103.597290039000086, + 14.423706055000025 + ], + [ + 103.600280762000068, + 14.423095703000058 + ], + [ + 103.603515625000057, + 14.422302246000072 + ], + [ + 103.607299805000082, + 14.42272949200003 + ], + [ + 103.609924316000047, + 14.42468261700003 + ], + [ + 103.610717773000033, + 14.421325684000067 + ], + [ + 103.611694336000085, + 14.41687011700003 + ], + [ + 103.613891602000081, + 14.412719727000024 + ], + [ + 103.615295410000044, + 14.409301758000026 + ], + [ + 103.617309570000032, + 14.406127930000025 + ], + [ + 103.620727539000086, + 14.404296875000057 + ], + [ + 103.624328613000046, + 14.404907227000024 + ], + [ + 103.627685547000056, + 14.407287598000039 + ], + [ + 103.631103516000053, + 14.40850830100004 + ], + [ + 103.634094238000046, + 14.410278320000032 + ], + [ + 103.638122559000067, + 14.412475586000028 + ], + [ + 103.642700195000032, + 14.414672852000024 + ], + [ + 103.648315430000082, + 14.415527344000054 + ], + [ + 103.653076172000056, + 14.413696289000029 + ], + [ + 103.655700684000067, + 14.416687012000068 + ], + [ + 103.656311035000044, + 14.420715332000043 + ], + [ + 103.652099609000061, + 14.423278809000067 + ], + [ + 103.647888184000067, + 14.424499512000068 + ], + [ + 103.642700195000032, + 14.42608642600004 + ], + [ + 103.644104004000042, + 14.430297852000024 + ], + [ + 103.645874023000033, + 14.43389892600004 + ], + [ + 103.651672363000046, + 14.436523437000062 + ], + [ + 103.656127930000082, + 14.439514160000044 + ], + [ + 103.660522461000085, + 14.439697266000053 + ], + [ + 103.663085937000062, + 14.438476562000062 + ], + [ + 103.665893555000082, + 14.437316895000038 + ], + [ + 103.669494629000042, + 14.437072754000042 + ], + [ + 103.672729492000087, + 14.436889648000033 + ], + [ + 103.676513672000056, + 14.436889648000033 + ], + [ + 103.680480957000043, + 14.437683105000076 + ], + [ + 103.68389892600004, + 14.439514160000044 + ], + [ + 103.687927246000072, + 14.44030761700003 + ], + [ + 103.692077637000068, + 14.438903809000067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 1.3977834340199999, + "Shape_Area": 0.089600304140599996, + "ADM1_EN": "Pailin", + "ADM1_PCODE": "KH24", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 102.651489258000083, + 13.115905762000068 + ], + [ + 102.654907227000081, + 13.113891602000024 + ], + [ + 102.65850830100004, + 13.114501953000058 + ], + [ + 102.663085937000062, + 13.113525391000053 + ], + [ + 102.665893555000082, + 13.115478516000053 + ], + [ + 102.669128418000071, + 13.113098145000038 + ], + [ + 102.672729492000087, + 13.111328125000057 + ], + [ + 102.676513672000056, + 13.110717773000033 + ], + [ + 102.680480957000043, + 13.110107422000056 + ], + [ + 102.684326172000056, + 13.107299805000025 + ], + [ + 102.685485840000069, + 13.103881836000028 + ], + [ + 102.687072754000042, + 13.101074219000054 + ], + [ + 102.689697266000053, + 13.103698730000076 + ], + [ + 102.694519043000071, + 13.102294922000056 + ], + [ + 102.735473633000083, + 13.044494629000042 + ], + [ + 102.746887207000043, + 13.032470703000058 + ], + [ + 102.751281738000046, + 13.026672363000046 + ], + [ + 102.751525879000042, + 13.001892090000069 + ], + [ + 102.751708984000061, + 12.965087891000053 + ], + [ + 102.751892090000069, + 12.923095703000058 + ], + [ + 102.752075195000032, + 12.892272949000073 + ], + [ + 102.752319336000085, + 12.865112305000025 + ], + [ + 102.753295898000033, + 12.79327392600004 + ], + [ + 102.753295898000033, + 12.749511719000054 + ], + [ + 102.746276855000076, + 12.743713379000042 + ], + [ + 102.743286133000083, + 12.741516113000046 + ], + [ + 102.731506348000039, + 12.733703613000046 + ], + [ + 102.685913086000085, + 12.702880859000061 + ], + [ + 102.666687012000068, + 12.689880371000072 + ], + [ + 102.621093750000057, + 12.681884766000053 + ], + [ + 102.564086914000086, + 12.671875 + ], + [ + 102.519470215000069, + 12.662902832000043 + ], + [ + 102.516296387000068, + 12.665100098000039 + ], + [ + 102.513305664000086, + 12.669311523000033 + ], + [ + 102.509887695000032, + 12.671325684000067 + ], + [ + 102.508483887000068, + 12.675720215000069 + ], + [ + 102.507080078000058, + 12.679077148000033 + ], + [ + 102.505676270000038, + 12.682922363000046 + ], + [ + 102.50811767600004, + 12.685729980000076 + ], + [ + 102.509704590000069, + 12.689880371000072 + ], + [ + 102.507690430000082, + 12.695129395000038 + ], + [ + 102.504882812000062, + 12.698730469000054 + ], + [ + 102.500915527000075, + 12.701721191000047 + ], + [ + 102.497924805000082, + 12.704895020000038 + ], + [ + 102.499877930000082, + 12.708312988000046 + ], + [ + 102.501708984000061, + 12.710510254000042 + ], + [ + 102.503295898000033, + 12.713073730000076 + ], + [ + 102.502929687000062, + 12.71710205100004 + ], + [ + 102.502685547000056, + 12.721679687000062 + ], + [ + 102.503723145000038, + 12.726501465000069 + ], + [ + 102.504272461000085, + 12.730895996000072 + ], + [ + 102.503112793000071, + 12.734130859000061 + ], + [ + 102.500915527000075, + 12.737670898000033 + ], + [ + 102.50030517600004, + 12.740478516000053 + ], + [ + 102.502502441000047, + 12.743103027000075 + ], + [ + 102.505126953000058, + 12.746276855000076 + ], + [ + 102.506103516000053, + 12.749511719000054 + ], + [ + 102.50811767600004, + 12.752319336000028 + ], + [ + 102.512512207000043, + 12.753295898000033 + ], + [ + 102.516723633000083, + 12.752319336000028 + ], + [ + 102.519714355000076, + 12.753906250000057 + ], + [ + 102.521728516000053, + 12.756896973000039 + ], + [ + 102.523315430000082, + 12.759704590000069 + ], + [ + 102.525512695000032, + 12.763122559000067 + ], + [ + 102.528320312000062, + 12.765502930000025 + ], + [ + 102.531494141000053, + 12.766723633000026 + ], + [ + 102.533325195000032, + 12.771118164000029 + ], + [ + 102.533691406000059, + 12.775512695000032 + ], + [ + 102.535522461000085, + 12.780090332000043 + ], + [ + 102.535705566000047, + 12.784484863000046 + ], + [ + 102.534484863000046, + 12.787475586000028 + ], + [ + 102.532470703000058, + 12.790100098000039 + ], + [ + 102.529724121000072, + 12.79327392600004 + ], + [ + 102.528320312000062, + 12.797485352000024 + ], + [ + 102.528930664000086, + 12.802490234000061 + ], + [ + 102.530273437000062, + 12.806884766000053 + ], + [ + 102.532104492000087, + 12.810729980000076 + ], + [ + 102.531127930000082, + 12.813720703000058 + ], + [ + 102.529296875000057, + 12.816894531000059 + ], + [ + 102.526306152000075, + 12.818481445000032 + ], + [ + 102.522277832000043, + 12.819885254000042 + ], + [ + 102.519104004000042, + 12.821289062000062 + ], + [ + 102.515686035000044, + 12.82312011700003 + ], + [ + 102.51593017600004, + 12.826293945000032 + ], + [ + 102.515319824000073, + 12.830078125000057 + ], + [ + 102.516113281000059, + 12.833312988000046 + ], + [ + 102.515075684000067, + 12.837280273000033 + ], + [ + 102.514099121000072, + 12.841674805000025 + ], + [ + 102.509704590000069, + 12.844726562000062 + ], + [ + 102.506103516000053, + 12.846313477000024 + ], + [ + 102.503479004000042, + 12.849121094000054 + ], + [ + 102.500488281000059, + 12.851501465000069 + ], + [ + 102.498901367000087, + 12.855895996000072 + ], + [ + 102.498474121000072, + 12.860473633000026 + ], + [ + 102.500671387000068, + 12.863525391000053 + ], + [ + 102.503479004000042, + 12.864685059000067 + ], + [ + 102.506896973000039, + 12.866271973000039 + ], + [ + 102.507507324000073, + 12.870300293000071 + ], + [ + 102.506286621000072, + 12.874877930000025 + ], + [ + 102.505676270000038, + 12.878723145000038 + ], + [ + 102.505676270000038, + 12.882690430000025 + ], + [ + 102.508300781000059, + 12.884521484000061 + ], + [ + 102.506530762000068, + 12.887512207000043 + ], + [ + 102.506896973000039, + 12.89093017600004 + ], + [ + 102.507873535000044, + 12.893676758000026 + ], + [ + 102.508728027000075, + 12.896484375000057 + ], + [ + 102.505920410000044, + 12.898925781000059 + ], + [ + 102.503295898000033, + 12.900878906000059 + ], + [ + 102.503112793000071, + 12.904479980000076 + ], + [ + 102.502929687000062, + 12.908325195000032 + ], + [ + 102.501708984000061, + 12.912109375000057 + ], + [ + 102.500915527000075, + 12.91632080100004 + ], + [ + 102.498291016000053, + 12.920288086000028 + ], + [ + 102.495910645000038, + 12.922485352000024 + ], + [ + 102.494873047000056, + 12.926330566000047 + ], + [ + 102.493103027000075, + 12.929077148000033 + ], + [ + 102.492309570000032, + 12.931884766000053 + ], + [ + 102.490905762000068, + 12.934875488000046 + ], + [ + 102.490112305000082, + 12.938110352000024 + ], + [ + 102.488891602000081, + 12.940917969000054 + ], + [ + 102.488098145000038, + 12.944091797000056 + ], + [ + 102.486328125000057, + 12.947326660000044 + ], + [ + 102.489074707000043, + 12.950317383000026 + ], + [ + 102.492309570000032, + 12.951110840000069 + ], + [ + 102.496276855000076, + 12.953125 + ], + [ + 102.498291016000053, + 12.955871582000043 + ], + [ + 102.499877930000082, + 12.958312988000046 + ], + [ + 102.500488281000059, + 12.961120605000076 + ], + [ + 102.498901367000087, + 12.963684082000043 + ], + [ + 102.497070312000062, + 12.967285156000059 + ], + [ + 102.494689941000047, + 12.970275879000042 + ], + [ + 102.491271973000039, + 12.971313477000024 + ], + [ + 102.489501953000058, + 12.97491455100004 + ], + [ + 102.486328125000057, + 12.977722168000071 + ], + [ + 102.487304687000062, + 12.982482910000044 + ], + [ + 102.5625, + 12.980712891000053 + ], + [ + 102.572692871000072, + 12.999694824000073 + ], + [ + 102.575500488000046, + 13.002075195000032 + ], + [ + 102.576721191000047, + 13.005920410000044 + ], + [ + 102.579284668000071, + 13.008300781000059 + ], + [ + 102.580078125000057, + 13.014099121000072 + ], + [ + 102.584472656000059, + 13.015319824000073 + ], + [ + 102.583312988000046, + 13.019470215000069 + ], + [ + 102.585876465000069, + 13.023315430000025 + ], + [ + 102.582275391000053, + 13.024902344000054 + ], + [ + 102.585327148000033, + 13.028930664000029 + ], + [ + 102.580871582000043, + 13.030273437000062 + ], + [ + 102.581115723000039, + 13.033325195000032 + ], + [ + 102.584106445000032, + 13.035278320000032 + ], + [ + 102.583679199000073, + 13.038513184000067 + ], + [ + 102.582275391000053, + 13.041503906000059 + ], + [ + 102.582885742000087, + 13.045104980000076 + ], + [ + 102.583679199000073, + 13.048522949000073 + ], + [ + 102.581115723000039, + 13.049926758000026 + ], + [ + 102.579711914000086, + 13.053527832000043 + ], + [ + 102.579101562000062, + 13.057128906000059 + ], + [ + 102.577270508000083, + 13.060485840000069 + ], + [ + 102.574890137000068, + 13.058288574000073 + ], + [ + 102.573486328000058, + 13.062316895000038 + ], + [ + 102.577270508000083, + 13.065490723000039 + ], + [ + 102.577880859000061, + 13.069274902000075 + ], + [ + 102.579711914000086, + 13.073913574000073 + ], + [ + 102.584472656000059, + 13.074279785000044 + ], + [ + 102.588073730000076, + 13.075927734000061 + ], + [ + 102.590087891000053, + 13.078125 + ], + [ + 102.592529297000056, + 13.080688477000024 + ], + [ + 102.591918945000032, + 13.083496094000054 + ], + [ + 102.587280273000033, + 13.082092285000044 + ], + [ + 102.587524414000086, + 13.086486816000047 + ], + [ + 102.592285156000059, + 13.087524414000029 + ], + [ + 102.595520020000038, + 13.087280273000033 + ], + [ + 102.599121094000054, + 13.086486816000047 + ], + [ + 102.601074219000054, + 13.089904785000044 + ], + [ + 102.598083496000072, + 13.093872070000032 + ], + [ + 102.602111816000047, + 13.095275879000042 + ], + [ + 102.602722168000071, + 13.099304199000073 + ], + [ + 102.606323242000087, + 13.100524902000075 + ], + [ + 102.609924316000047, + 13.097473145000038 + ], + [ + 102.613891602000081, + 13.099304199000073 + ], + [ + 102.614318848000039, + 13.102294922000056 + ], + [ + 102.617675781000059, + 13.101684570000032 + ], + [ + 102.621887207000043, + 13.101684570000032 + ], + [ + 102.624877930000082, + 13.104309082000043 + ], + [ + 102.628723145000038, + 13.104492187000062 + ], + [ + 102.633728027000075, + 13.105285645000038 + ], + [ + 102.63507080100004, + 13.109924316000047 + ], + [ + 102.63311767600004, + 13.113708496000072 + ], + [ + 102.635925293000071, + 13.114685059000067 + ], + [ + 102.638916016000053, + 13.114074707000043 + ], + [ + 102.643310547000056, + 13.114685059000067 + ], + [ + 102.645080566000047, + 13.112487793000071 + ], + [ + 102.648315430000082, + 13.114685059000067 + ], + [ + 102.651489258000083, + 13.115905762000068 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 1.4568599151799999, + "Shape_Area": 0.056754158832600002, + "ADM1_EN": "Phnom Penh", + "ADM1_PCODE": "KH12", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 104.918884277000075, + 11.736511230000076 + ], + [ + 104.923278809000067, + 11.736083984000061 + ], + [ + 104.927917480000076, + 11.736083984000061 + ], + [ + 104.931884766000053, + 11.736083984000061 + ], + [ + 104.936523437000062, + 11.736083984000061 + ], + [ + 104.939880371000072, + 11.735900879000042 + ], + [ + 104.944274902000075, + 11.734924316000047 + ], + [ + 104.947509766000053, + 11.73272705100004 + ], + [ + 104.948486328000058, + 11.729309082000043 + ], + [ + 104.949279785000044, + 11.726074219000054 + ], + [ + 104.95147705100004, + 11.723083496000072 + ], + [ + 104.955322266000053, + 11.718872070000032 + ], + [ + 104.958312988000046, + 11.715881348000039 + ], + [ + 104.960327148000033, + 11.711730957000043 + ], + [ + 104.963500977000081, + 11.711120605000076 + ], + [ + 104.967712402000075, + 11.710876465000069 + ], + [ + 104.966918945000089, + 11.707702637000068 + ], + [ + 104.965515137000068, + 11.703491211000028 + ], + [ + 104.964294434000067, + 11.699279785000044 + ], + [ + 104.963317871000072, + 11.695312500000057 + ], + [ + 104.962280273000033, + 11.689880371000072 + ], + [ + 104.961120605000076, + 11.686279297000056 + ], + [ + 104.959899902000075, + 11.682922363000046 + ], + [ + 104.958129883000083, + 11.678894043000071 + ], + [ + 104.954528809000067, + 11.675109863000046 + ], + [ + 104.952270508000083, + 11.669921875000057 + ], + [ + 104.950683594000054, + 11.665893555000025 + ], + [ + 104.946716309000067, + 11.654907227000024 + ], + [ + 104.943908691000047, + 11.651672363000046 + ], + [ + 104.941894531000059, + 11.648071289000029 + ], + [ + 104.939880371000072, + 11.645507812000062 + ], + [ + 104.937683105000076, + 11.642272949000073 + ], + [ + 104.936279297000056, + 11.639099121000072 + ], + [ + 104.934692383000083, + 11.633911133000026 + ], + [ + 104.93389892600004, + 11.631103516000053 + ], + [ + 104.933471680000082, + 11.627685547000056 + ], + [ + 104.932312012000068, + 11.623718262000068 + ], + [ + 104.933471680000082, + 11.618713379000042 + ], + [ + 104.934692383000083, + 11.614929199000073 + ], + [ + 104.935485840000069, + 11.611083984000061 + ], + [ + 104.939086914000086, + 11.605712891000053 + ], + [ + 104.939270020000038, + 11.600891113000046 + ], + [ + 104.940917969000054, + 11.597106934000067 + ], + [ + 104.942687988000046, + 11.592285156000059 + ], + [ + 104.943481445000089, + 11.588928223000039 + ], + [ + 104.944091797000056, + 11.585510254000042 + ], + [ + 104.944702148000033, + 11.580688477000024 + ], + [ + 104.945129395000038, + 11.575927734000061 + ], + [ + 104.945922852000081, + 11.563110352000024 + ], + [ + 104.948303223000039, + 11.560485840000069 + ], + [ + 104.95147705100004, + 11.558105469000054 + ], + [ + 104.955505371000072, + 11.555908203000058 + ], + [ + 104.958679199000073, + 11.554321289000029 + ], + [ + 104.963317871000072, + 11.552124023000033 + ], + [ + 104.967529297000056, + 11.549316406000059 + ], + [ + 104.971313477000081, + 11.547485352000024 + ], + [ + 104.976074219000054, + 11.546081543000071 + ], + [ + 104.980712891000053, + 11.545288086000028 + ], + [ + 104.985290527000075, + 11.544677734000061 + ], + [ + 104.989501953000058, + 11.543884277000075 + ], + [ + 104.994873047000056, + 11.54327392600004 + ], + [ + 104.999511719000054, + 11.543518066000047 + ], + [ + 105.003112793000071, + 11.543701172000056 + ], + [ + 105.008483887000068, + 11.543884277000075 + ], + [ + 105.014892578000058, + 11.543884277000075 + ], + [ + 105.017700195000089, + 11.545288086000028 + ], + [ + 105.022277832000043, + 11.54327392600004 + ], + [ + 105.028320312000062, + 11.542297363000046 + ], + [ + 105.032714844000054, + 11.541687012000068 + ], + [ + 105.037292480000076, + 11.540283203000058 + ], + [ + 105.041687012000068, + 11.538879395000038 + ], + [ + 105.039123535000044, + 11.535522461000028 + ], + [ + 105.037292480000076, + 11.531311035000044 + ], + [ + 105.035095215000069, + 11.528076172000056 + ], + [ + 105.029907227000081, + 11.523315430000025 + ], + [ + 105.027099609000061, + 11.518676758000026 + ], + [ + 105.026306152000075, + 11.515686035000044 + ], + [ + 105.026916504000042, + 11.512329102000024 + ], + [ + 105.027709961000085, + 11.506896973000039 + ], + [ + 105.028503418000071, + 11.501525879000042 + ], + [ + 105.028076172000056, + 11.497680664000029 + ], + [ + 105.028076172000056, + 11.494506836000028 + ], + [ + 105.029113770000038, + 11.491271973000039 + ], + [ + 105.029113770000038, + 11.488098145000038 + ], + [ + 105.029296875000057, + 11.483520508000026 + ], + [ + 105.049072266000053, + 11.482299805000025 + ], + [ + 105.043518066000047, + 11.480102539000029 + ], + [ + 105.038330078000058, + 11.477722168000071 + ], + [ + 105.034484863000046, + 11.475097656000059 + ], + [ + 105.031127930000082, + 11.472290039000029 + ], + [ + 105.028930664000086, + 11.469299316000047 + ], + [ + 105.029724121000072, + 11.46569824200003 + ], + [ + 105.024108887000068, + 11.46569824200003 + ], + [ + 105.021118164000086, + 11.465881348000039 + ], + [ + 105.017089844000054, + 11.465881348000039 + ], + [ + 105.013671875000057, + 11.466125488000046 + ], + [ + 105.01007080100004, + 11.466125488000046 + ], + [ + 105.007080078000058, + 11.466125488000046 + ], + [ + 105.002685547000056, + 11.465881348000039 + ], + [ + 104.997924805000082, + 11.465087891000053 + ], + [ + 104.994079590000069, + 11.464721680000025 + ], + [ + 104.991271973000039, + 11.464111328000058 + ], + [ + 104.987487793000071, + 11.463073730000076 + ], + [ + 104.982482910000044, + 11.461486816000047 + ], + [ + 104.977722168000071, + 11.462280273000033 + ], + [ + 104.973083496000072, + 11.462707520000038 + ], + [ + 104.970092773000033, + 11.463073730000076 + ], + [ + 104.966918945000089, + 11.464111328000058 + ], + [ + 104.963317871000072, + 11.466491699000073 + ], + [ + 104.960327148000033, + 11.469909668000071 + ], + [ + 104.957519531000059, + 11.474304199000073 + ], + [ + 104.955322266000053, + 11.477722168000071 + ], + [ + 104.953308105000076, + 11.481079102000024 + ], + [ + 104.951110840000069, + 11.485107422000056 + ], + [ + 104.948913574000073, + 11.490112305000025 + ], + [ + 104.947082520000038, + 11.493713379000042 + ], + [ + 104.935729980000076, + 11.489685059000067 + ], + [ + 104.921508789000086, + 11.484497070000032 + ], + [ + 104.921325684000067, + 11.480895996000072 + ], + [ + 104.920104980000076, + 11.477111816000047 + ], + [ + 104.91827392600004, + 11.466674805000025 + ], + [ + 104.919311523000033, + 11.463317871000072 + ], + [ + 104.921508789000086, + 11.460876465000069 + ], + [ + 104.921081543000071, + 11.457702637000068 + ], + [ + 104.921875, + 11.450500488000046 + ], + [ + 104.923095703000058, + 11.447082520000038 + ], + [ + 104.922729492000087, + 11.443908691000047 + ], + [ + 104.922302246000072, + 11.428894043000071 + ], + [ + 104.918701172000056, + 11.429077148000033 + ], + [ + 104.916076660000044, + 11.430297852000024 + ], + [ + 104.912902832000043, + 11.431884766000053 + ], + [ + 104.908874512000068, + 11.434875488000046 + ], + [ + 104.904724121000072, + 11.435729980000076 + ], + [ + 104.90069580100004, + 11.435119629000042 + ], + [ + 104.897521973000039, + 11.435485840000069 + ], + [ + 104.893920898000033, + 11.43389892600004 + ], + [ + 104.891113281000059, + 11.431884766000053 + ], + [ + 104.888122559000067, + 11.430480957000043 + ], + [ + 104.885681152000075, + 11.433715820000032 + ], + [ + 104.882080078000058, + 11.436279297000056 + ], + [ + 104.879516602000081, + 11.434326172000056 + ], + [ + 104.877319336000085, + 11.429687500000057 + ], + [ + 104.875122070000089, + 11.425476074000073 + ], + [ + 104.872924805000082, + 11.421508789000029 + ], + [ + 104.869689941000047, + 11.424316406000059 + ], + [ + 104.86749267600004, + 11.426879883000026 + ], + [ + 104.862915039000086, + 11.425292969000054 + ], + [ + 104.858886719000054, + 11.423889160000044 + ], + [ + 104.855712891000053, + 11.425720215000069 + ], + [ + 104.852905273000033, + 11.429687500000057 + ], + [ + 104.848693848000039, + 11.430480957000043 + ], + [ + 104.844116211000085, + 11.430480957000043 + ], + [ + 104.830871582000043, + 11.431274414000029 + ], + [ + 104.828125, + 11.435302734000061 + ], + [ + 104.826721191000047, + 11.438903809000067 + ], + [ + 104.82452392600004, + 11.441284180000025 + ], + [ + 104.822875977000081, + 11.443908691000047 + ], + [ + 104.819702148000033, + 11.442687988000046 + ], + [ + 104.817077637000068, + 11.439514160000044 + ], + [ + 104.819091797000056, + 11.436279297000056 + ], + [ + 104.817504883000083, + 11.432128906000059 + ], + [ + 104.813110352000081, + 11.430480957000043 + ], + [ + 104.80889892600004, + 11.430480957000043 + ], + [ + 104.804870605000076, + 11.431884766000053 + ], + [ + 104.801879883000083, + 11.434509277000075 + ], + [ + 104.798522949000073, + 11.439086914000029 + ], + [ + 104.798095703000058, + 11.444519043000071 + ], + [ + 104.794311523000033, + 11.443725586000028 + ], + [ + 104.792724609000061, + 11.447082520000038 + ], + [ + 104.788330078000058, + 11.445922852000024 + ], + [ + 104.785095215000069, + 11.447082520000038 + ], + [ + 104.782897949000073, + 11.449707031000059 + ], + [ + 104.784729004000042, + 11.453918457000043 + ], + [ + 104.782287598000039, + 11.456115723000039 + ], + [ + 104.778503418000071, + 11.456909180000025 + ], + [ + 104.774475098000039, + 11.458679199000073 + ], + [ + 104.773315430000082, + 11.462280273000033 + ], + [ + 104.768676758000083, + 11.462890625000057 + ], + [ + 104.764709473000039, + 11.463073730000076 + ], + [ + 104.765319824000073, + 11.460327148000033 + ], + [ + 104.764099121000072, + 11.457702637000068 + ], + [ + 104.759277344000054, + 11.458129883000026 + ], + [ + 104.755676270000038, + 11.457275391000053 + ], + [ + 104.757690430000082, + 11.454895020000038 + ], + [ + 104.759704590000069, + 11.452087402000075 + ], + [ + 104.754516602000081, + 11.452697754000042 + ], + [ + 104.752929687000062, + 11.456298828000058 + ], + [ + 104.748901367000087, + 11.455505371000072 + ], + [ + 104.744689941000047, + 11.455322266000053 + ], + [ + 104.744873047000056, + 11.459716797000056 + ], + [ + 104.744873047000056, + 11.463073730000076 + ], + [ + 104.744873047000056, + 11.467285156000059 + ], + [ + 104.744873047000056, + 11.470886230000076 + ], + [ + 104.744873047000056, + 11.474121094000054 + ], + [ + 104.745727539000086, + 11.478515625000057 + ], + [ + 104.746276855000076, + 11.482482910000044 + ], + [ + 104.748901367000087, + 11.485717773000033 + ], + [ + 104.75030517600004, + 11.489318848000039 + ], + [ + 104.754089355000076, + 11.489074707000043 + ], + [ + 104.758911133000083, + 11.490295410000044 + ], + [ + 104.762878418000071, + 11.492675781000059 + ], + [ + 104.763488770000038, + 11.495910645000038 + ], + [ + 104.764892578000058, + 11.498718262000068 + ], + [ + 104.767089844000054, + 11.501281738000046 + ], + [ + 104.768493652000075, + 11.505126953000058 + ], + [ + 104.768676758000083, + 11.509094238000046 + ], + [ + 104.768493652000075, + 11.515075684000067 + ], + [ + 104.767272949000073, + 11.520080566000047 + ], + [ + 104.761901855000076, + 11.523071289000029 + ], + [ + 104.758728027000075, + 11.526489258000026 + ], + [ + 104.755920410000044, + 11.530273437000062 + ], + [ + 104.751892090000069, + 11.529296875000057 + ], + [ + 104.748107910000044, + 11.527893066000047 + ], + [ + 104.744689941000047, + 11.530517578000058 + ], + [ + 104.743530273000033, + 11.534729004000042 + ], + [ + 104.743896484000061, + 11.539672852000024 + ], + [ + 104.741882324000073, + 11.543884277000075 + ], + [ + 104.738525391000053, + 11.545471191000047 + ], + [ + 104.73468017600004, + 11.543884277000075 + ], + [ + 104.731323242000087, + 11.544128418000071 + ], + [ + 104.727905273000033, + 11.544677734000061 + ], + [ + 104.727722168000071, + 11.548278809000067 + ], + [ + 104.727294922000056, + 11.551330566000047 + ], + [ + 104.726318359000061, + 11.554077148000033 + ], + [ + 104.725097656000059, + 11.557128906000059 + ], + [ + 104.722473145000038, + 11.559875488000046 + ], + [ + 104.720092773000033, + 11.561706543000071 + ], + [ + 104.722717285000044, + 11.564514160000044 + ], + [ + 104.722473145000038, + 11.567687988000046 + ], + [ + 104.720886230000076, + 11.571716309000067 + ], + [ + 104.716674805000082, + 11.572082520000038 + ], + [ + 104.713500977000081, + 11.57312011700003 + ], + [ + 104.712707520000038, + 11.57647705100004 + ], + [ + 104.716308594000054, + 11.575927734000061 + ], + [ + 104.719726562000062, + 11.575500488000046 + ], + [ + 104.724487305000082, + 11.575317383000026 + ], + [ + 104.729309082000043, + 11.575683594000054 + ], + [ + 104.732910156000059, + 11.580322266000053 + ], + [ + 104.735473633000083, + 11.582092285000044 + ], + [ + 104.733703613000046, + 11.585083008000026 + ], + [ + 104.732116699000073, + 11.589111328000058 + ], + [ + 104.732116699000073, + 11.592712402000075 + ], + [ + 104.734130859000061, + 11.595703125000057 + ], + [ + 104.735717773000033, + 11.59851074200003 + ], + [ + 104.735717773000033, + 11.601684570000032 + ], + [ + 104.734497070000089, + 11.605895996000072 + ], + [ + 104.735473633000083, + 11.609497070000032 + ], + [ + 104.738098145000038, + 11.615295410000044 + ], + [ + 104.739501953000058, + 11.618896484000061 + ], + [ + 104.740478516000053, + 11.622497559000067 + ], + [ + 104.740905762000068, + 11.625671387000068 + ], + [ + 104.741882324000073, + 11.629089355000076 + ], + [ + 104.742919922000056, + 11.634887695000032 + ], + [ + 104.743896484000061, + 11.640686035000044 + ], + [ + 104.74249267600004, + 11.646301270000038 + ], + [ + 104.746704102000081, + 11.653320312000062 + ], + [ + 104.748901367000087, + 11.656311035000044 + ], + [ + 104.747497559000067, + 11.660522461000028 + ], + [ + 104.749328613000046, + 11.664489746000072 + ], + [ + 104.752319336000085, + 11.665893555000025 + ], + [ + 104.757080078000058, + 11.666076660000044 + ], + [ + 104.762084961000085, + 11.66632080100004 + ], + [ + 104.766906738000046, + 11.666687012000068 + ], + [ + 104.769714355000076, + 11.668090820000032 + ], + [ + 104.776489258000083, + 11.669494629000042 + ], + [ + 104.780273437000062, + 11.670898437000062 + ], + [ + 104.784729004000042, + 11.671508789000029 + ], + [ + 104.788085937000062, + 11.672119141000053 + ], + [ + 104.792114258000083, + 11.672302246000072 + ], + [ + 104.796081543000071, + 11.671875 + ], + [ + 104.799682617000087, + 11.672302246000072 + ], + [ + 104.803100586000085, + 11.672912598000039 + ], + [ + 104.806274414000086, + 11.673095703000058 + ], + [ + 104.809509277000075, + 11.673095703000058 + ], + [ + 104.813293457000043, + 11.673889160000044 + ], + [ + 104.810729980000076, + 11.676879883000026 + ], + [ + 104.811279297000056, + 11.681518555000025 + ], + [ + 104.812927246000072, + 11.68389892600004 + ], + [ + 104.815307617000087, + 11.686279297000056 + ], + [ + 104.81671142600004, + 11.689270020000038 + ], + [ + 104.814697266000053, + 11.692687988000046 + ], + [ + 104.815307617000087, + 11.697326660000044 + ], + [ + 104.815673828000058, + 11.700683594000054 + ], + [ + 104.815307617000087, + 11.703918457000043 + ], + [ + 104.817077637000068, + 11.706298828000058 + ], + [ + 104.819274902000075, + 11.708496094000054 + ], + [ + 104.823303223000039, + 11.708923340000069 + ], + [ + 104.822875977000081, + 11.713317871000072 + ], + [ + 104.826110840000069, + 11.717529297000056 + ], + [ + 104.830078125000057, + 11.715881348000039 + ], + [ + 104.833129883000083, + 11.71569824200003 + ], + [ + 104.836486816000047, + 11.71569824200003 + ], + [ + 104.839904785000044, + 11.714477539000029 + ], + [ + 104.841674805000082, + 11.708923340000069 + ], + [ + 104.842895508000083, + 11.705078125000057 + ], + [ + 104.844116211000085, + 11.701110840000069 + ], + [ + 104.844909668000071, + 11.697692871000072 + ], + [ + 104.845703125000057, + 11.694702148000033 + ], + [ + 104.845520020000038, + 11.69171142600004 + ], + [ + 104.849670410000044, + 11.686706543000071 + ], + [ + 104.851928711000085, + 11.682678223000039 + ], + [ + 104.853515625000057, + 11.679321289000029 + ], + [ + 104.856506348000039, + 11.677124023000033 + ], + [ + 104.858276367000087, + 11.672302246000072 + ], + [ + 104.861328125000057, + 11.668518066000047 + ], + [ + 104.862670898000033, + 11.67272949200003 + ], + [ + 104.867675781000059, + 11.67272949200003 + ], + [ + 104.871093750000057, + 11.67272949200003 + ], + [ + 104.87530517600004, + 11.67272949200003 + ], + [ + 104.878295898000033, + 11.67272949200003 + ], + [ + 104.88507080100004, + 11.672302246000072 + ], + [ + 104.892700195000089, + 11.672485352000024 + ], + [ + 104.897705078000058, + 11.672302246000072 + ], + [ + 104.899108887000068, + 11.684326172000056 + ], + [ + 104.899291992000087, + 11.687927246000072 + ], + [ + 104.900512695000089, + 11.691528320000032 + ], + [ + 104.904113770000038, + 11.694519043000071 + ], + [ + 104.906921387000068, + 11.696899414000029 + ], + [ + 104.909301758000083, + 11.700317383000026 + ], + [ + 104.910095215000069, + 11.704895020000038 + ], + [ + 104.911315918000071, + 11.70928955100004 + ], + [ + 104.912475586000085, + 11.712280273000033 + ], + [ + 104.916076660000044, + 11.716918945000032 + ], + [ + 104.917114258000083, + 11.721496582000043 + ], + [ + 104.917724609000061, + 11.725708008000026 + ], + [ + 104.917480469000054, + 11.728881836000028 + ], + [ + 104.917480469000054, + 11.732299805000025 + ], + [ + 104.918884277000075, + 11.736511230000076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 4.7113355751799997, + "Shape_Area": 0.21668014679100001, + "ADM1_EN": "Preah Sihanouk", + "ADM1_PCODE": "KH18", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 103.802673340000069, + 10.431518555000025 + ], + [ + 103.806091309000067, + 10.429504395000038 + ], + [ + 103.810119629000042, + 10.429870605000076 + ], + [ + 103.813903809000067, + 10.429687500000057 + ], + [ + 103.817687988000046, + 10.429321289000029 + ], + [ + 103.822326660000044, + 10.426696777000075 + ], + [ + 103.819519043000071, + 10.423522949000073 + ], + [ + 103.815490723000039, + 10.420471191000047 + ], + [ + 103.810913086000085, + 10.419921875000057 + ], + [ + 103.807678223000039, + 10.418518066000047 + ], + [ + 103.805114746000072, + 10.416076660000044 + ], + [ + 103.805480957000043, + 10.412109375000057 + ], + [ + 103.808288574000073, + 10.409118652000075 + ], + [ + 103.808288574000073, + 10.405090332000043 + ], + [ + 103.805114746000072, + 10.403930664000029 + ], + [ + 103.801513672000056, + 10.406311035000044 + ], + [ + 103.800109863000046, + 10.409912109000061 + ], + [ + 103.798095703000058, + 10.413085937000062 + ], + [ + 103.794128418000071, + 10.41632080100004 + ], + [ + 103.790527344000054, + 10.415710449000073 + ], + [ + 103.787109375000057, + 10.41491699200003 + ], + [ + 103.784301758000083, + 10.417724609000061 + ], + [ + 103.782714844000054, + 10.422119141000053 + ], + [ + 103.784912109000061, + 10.424316406000059 + ], + [ + 103.787292480000076, + 10.427307129000042 + ], + [ + 103.787109375000057, + 10.431091309000067 + ], + [ + 103.785522461000085, + 10.434692383000026 + ], + [ + 103.787292480000076, + 10.437683105000076 + ], + [ + 103.791503906000059, + 10.438293457000043 + ], + [ + 103.795898437000062, + 10.435485840000069 + ], + [ + 103.799072266000053, + 10.432678223000039 + ], + [ + 103.802673340000069, + 10.431518555000025 + ] + ] + ], + [ + [ + [ + 103.622680664000086, + 10.485107422000056 + ], + [ + 103.621276855000076, + 10.482116699000073 + ], + [ + 103.619873047000056, + 10.485717773000033 + ], + [ + 103.621520996000072, + 10.489318848000039 + ], + [ + 103.622680664000086, + 10.485107422000056 + ] + ] + ], + [ + [ + [ + 103.564880371000072, + 10.488708496000072 + ], + [ + 103.560119629000042, + 10.487915039000029 + ], + [ + 103.558471680000082, + 10.492126465000069 + ], + [ + 103.555114746000072, + 10.495483398000033 + ], + [ + 103.552490234000061, + 10.497314453000058 + ], + [ + 103.556518555000082, + 10.500488281000059 + ], + [ + 103.559692383000083, + 10.501281738000046 + ], + [ + 103.563110352000081, + 10.49890136700003 + ], + [ + 103.564514160000044, + 10.495910645000038 + ], + [ + 103.56671142600004, + 10.492919922000056 + ], + [ + 103.564880371000072, + 10.488708496000072 + ] + ] + ], + [ + [ + [ + 103.587097168000071, + 10.506530762000068 + ], + [ + 103.591491699000073, + 10.505310059000067 + ], + [ + 103.596130371000072, + 10.505493164000029 + ], + [ + 103.599304199000073, + 10.505126953000058 + ], + [ + 103.599487305000082, + 10.500671387000068 + ], + [ + 103.59991455100004, + 10.496887207000043 + ], + [ + 103.602722168000071, + 10.495117187000062 + ], + [ + 103.605102539000086, + 10.492919922000056 + ], + [ + 103.606506348000039, + 10.489074707000043 + ], + [ + 103.607910156000059, + 10.484924316000047 + ], + [ + 103.604919434000067, + 10.482910156000059 + ], + [ + 103.600280762000068, + 10.481079102000024 + ], + [ + 103.599304199000073, + 10.475524902000075 + ], + [ + 103.596313477000081, + 10.476928711000028 + ], + [ + 103.594116211000085, + 10.480102539000029 + ], + [ + 103.590698242000087, + 10.481079102000024 + ], + [ + 103.586486816000047, + 10.479492187000062 + ], + [ + 103.581726074000073, + 10.481689453000058 + ], + [ + 103.581298828000058, + 10.484924316000047 + ], + [ + 103.584472656000059, + 10.485717773000033 + ], + [ + 103.586914062000062, + 10.487304687000062 + ], + [ + 103.587890625000057, + 10.490295410000044 + ], + [ + 103.586914062000062, + 10.493530273000033 + ], + [ + 103.585083008000083, + 10.496093750000057 + ], + [ + 103.582702637000068, + 10.498107910000044 + ], + [ + 103.579895020000038, + 10.499877930000025 + ], + [ + 103.578125, + 10.502685547000056 + ], + [ + 103.579101562000062, + 10.505920410000044 + ], + [ + 103.580505371000072, + 10.508728027000075 + ], + [ + 103.583923340000069, + 10.509521484000061 + ], + [ + 103.587097168000071, + 10.506530762000068 + ] + ] + ], + [ + [ + [ + 103.795471191000047, + 10.477905273000033 + ], + [ + 103.795898437000062, + 10.474304199000073 + ], + [ + 103.795898437000062, + 10.470703125000057 + ], + [ + 103.795898437000062, + 10.466491699000073 + ], + [ + 103.797302246000072, + 10.463500977000024 + ], + [ + 103.797912598000039, + 10.459899902000075 + ], + [ + 103.796691895000038, + 10.456726074000073 + ], + [ + 103.793090820000032, + 10.456481934000067 + ], + [ + 103.789672852000081, + 10.454711914000029 + ], + [ + 103.785888672000056, + 10.454284668000071 + ], + [ + 103.78350830100004, + 10.452697754000042 + ], + [ + 103.780090332000043, + 10.451293945000032 + ], + [ + 103.778686523000033, + 10.447509766000053 + ], + [ + 103.774475098000039, + 10.445129395000038 + ], + [ + 103.770690918000071, + 10.442504883000026 + ], + [ + 103.768310547000056, + 10.445129395000038 + ], + [ + 103.766113281000059, + 10.447082520000038 + ], + [ + 103.762878418000071, + 10.447692871000072 + ], + [ + 103.759521484000061, + 10.45007324200003 + ], + [ + 103.756713867000087, + 10.454528809000067 + ], + [ + 103.754516602000081, + 10.458129883000026 + ], + [ + 103.751281738000046, + 10.461303711000028 + ], + [ + 103.747924805000082, + 10.464721680000025 + ], + [ + 103.744506836000085, + 10.467285156000059 + ], + [ + 103.741882324000073, + 10.469726562000062 + ], + [ + 103.738525391000053, + 10.472106934000067 + ], + [ + 103.734924316000047, + 10.471923828000058 + ], + [ + 103.732910156000059, + 10.47491455100004 + ], + [ + 103.733093262000068, + 10.479675293000071 + ], + [ + 103.736083984000061, + 10.479919434000067 + ], + [ + 103.739685059000067, + 10.479125977000024 + ], + [ + 103.743286133000083, + 10.477722168000071 + ], + [ + 103.746704102000081, + 10.48132324200003 + ], + [ + 103.747680664000086, + 10.485107422000056 + ], + [ + 103.747680664000086, + 10.488891602000024 + ], + [ + 103.747314453000058, + 10.493103027000075 + ], + [ + 103.746520996000072, + 10.496704102000024 + ], + [ + 103.746093750000057, + 10.50030517600004 + ], + [ + 103.745483398000033, + 10.503112793000071 + ], + [ + 103.745117187000062, + 10.506286621000072 + ], + [ + 103.744689941000047, + 10.509277344000054 + ], + [ + 103.743286133000083, + 10.512329102000024 + ], + [ + 103.741088867000087, + 10.516113281000059 + ], + [ + 103.742126465000069, + 10.519287109000061 + ], + [ + 103.745117187000062, + 10.519897461000028 + ], + [ + 103.748718262000068, + 10.520507812000062 + ], + [ + 103.752319336000085, + 10.520080566000047 + ], + [ + 103.755310059000067, + 10.519470215000069 + ], + [ + 103.758300781000059, + 10.519287109000061 + ], + [ + 103.761474609000061, + 10.519104004000042 + ], + [ + 103.764709473000039, + 10.518920898000033 + ], + [ + 103.767700195000032, + 10.518310547000056 + ], + [ + 103.770507812000062, + 10.517700195000032 + ], + [ + 103.773925781000059, + 10.516296387000068 + ], + [ + 103.777099609000061, + 10.514892578000058 + ], + [ + 103.779907227000081, + 10.513916016000053 + ], + [ + 103.784118652000075, + 10.511901855000076 + ], + [ + 103.788330078000058, + 10.509521484000061 + ], + [ + 103.791870117000087, + 10.506530762000068 + ], + [ + 103.794921875000057, + 10.503479004000042 + ], + [ + 103.796081543000071, + 10.499877930000025 + ], + [ + 103.795898437000062, + 10.496093750000057 + ], + [ + 103.795471191000047, + 10.493103027000075 + ], + [ + 103.795288086000085, + 10.489929199000073 + ], + [ + 103.794677734000061, + 10.486328125000057 + ], + [ + 103.795471191000047, + 10.482116699000073 + ], + [ + 103.795471191000047, + 10.477905273000033 + ] + ] + ], + [ + [ + [ + 103.544494629000042, + 10.523681641000053 + ], + [ + 103.542114258000083, + 10.521301270000038 + ], + [ + 103.540893555000082, + 10.525085449000073 + ], + [ + 103.542480469000054, + 10.527893066000047 + ], + [ + 103.545898437000062, + 10.530517578000058 + ], + [ + 103.547119141000053, + 10.526123047000056 + ], + [ + 103.544494629000042, + 10.523681641000053 + ] + ] + ], + [ + [ + [ + 103.429077148000033, + 10.612121582000043 + ], + [ + 103.425476074000073, + 10.610717773000033 + ], + [ + 103.422119141000053, + 10.610717773000033 + ], + [ + 103.418090820000032, + 10.611328125000057 + ], + [ + 103.413879395000038, + 10.610290527000075 + ], + [ + 103.409729004000042, + 10.610473633000026 + ], + [ + 103.411926270000038, + 10.613525391000053 + ], + [ + 103.415100098000039, + 10.614929199000073 + ], + [ + 103.418518066000047, + 10.615112305000025 + ], + [ + 103.421325684000067, + 10.614074707000043 + ], + [ + 103.424682617000087, + 10.613891602000024 + ], + [ + 103.429077148000033, + 10.612121582000043 + ] + ] + ], + [ + [ + [ + 103.315673828000058, + 10.618286133000026 + ], + [ + 103.317077637000068, + 10.614685059000067 + ], + [ + 103.319091797000056, + 10.612304687000062 + ], + [ + 103.322326660000044, + 10.611328125000057 + ], + [ + 103.323120117000087, + 10.607116699000073 + ], + [ + 103.319702148000033, + 10.606872559000067 + ], + [ + 103.316101074000073, + 10.605712891000053 + ], + [ + 103.312316895000038, + 10.604492187000062 + ], + [ + 103.308715820000032, + 10.604309082000043 + ], + [ + 103.303894043000071, + 10.604492187000062 + ], + [ + 103.301879883000083, + 10.600891113000046 + ], + [ + 103.303894043000071, + 10.596923828000058 + ], + [ + 103.306884766000053, + 10.593872070000032 + ], + [ + 103.310485840000069, + 10.592285156000059 + ], + [ + 103.30889892600004, + 10.589294434000067 + ], + [ + 103.305297852000081, + 10.587097168000071 + ], + [ + 103.305114746000072, + 10.583312988000046 + ], + [ + 103.307495117000087, + 10.580322266000053 + ], + [ + 103.310913086000085, + 10.576904297000056 + ], + [ + 103.314514160000044, + 10.57452392600004 + ], + [ + 103.317871094000054, + 10.572692871000072 + ], + [ + 103.321899414000086, + 10.571899414000029 + ], + [ + 103.325683594000054, + 10.573303223000039 + ], + [ + 103.327880859000061, + 10.578125 + ], + [ + 103.329101562000062, + 10.581298828000058 + ], + [ + 103.329895020000038, + 10.58428955100004 + ], + [ + 103.331298828000058, + 10.588500977000024 + ], + [ + 103.334472656000059, + 10.587524414000029 + ], + [ + 103.334472656000059, + 10.583923340000069 + ], + [ + 103.335693359000061, + 10.580078125000057 + ], + [ + 103.338317871000072, + 10.578674316000047 + ], + [ + 103.339294434000067, + 10.575317383000026 + ], + [ + 103.337524414000086, + 10.572509766000053 + ], + [ + 103.334716797000056, + 10.570495605000076 + ], + [ + 103.331909180000082, + 10.568725586000028 + ], + [ + 103.329528809000067, + 10.565917969000054 + ], + [ + 103.326721191000047, + 10.562927246000072 + ], + [ + 103.325317383000083, + 10.559692383000026 + ], + [ + 103.325317383000083, + 10.555725098000039 + ], + [ + 103.32647705100004, + 10.551696777000075 + ], + [ + 103.325073242000087, + 10.547485352000024 + ], + [ + 103.324279785000044, + 10.543518066000047 + ], + [ + 103.319274902000075, + 10.542724609000061 + ], + [ + 103.315673828000058, + 10.542907715000069 + ], + [ + 103.311279297000056, + 10.545288086000028 + ], + [ + 103.3125, + 10.549072266000053 + ], + [ + 103.312072754000042, + 10.553894043000071 + ], + [ + 103.309875488000046, + 10.557312012000068 + ], + [ + 103.30889892600004, + 10.560119629000042 + ], + [ + 103.305725098000039, + 10.561279297000056 + ], + [ + 103.305480957000043, + 10.564514160000044 + ], + [ + 103.302307129000042, + 10.567871094000054 + ], + [ + 103.298522949000073, + 10.567321777000075 + ], + [ + 103.295288086000085, + 10.56671142600004 + ], + [ + 103.295715332000043, + 10.569702148000033 + ], + [ + 103.296325684000067, + 10.572509766000053 + ], + [ + 103.294677734000061, + 10.577270508000026 + ], + [ + 103.290710449000073, + 10.579528809000067 + ], + [ + 103.287109375000057, + 10.583129883000026 + ], + [ + 103.284118652000075, + 10.586120605000076 + ], + [ + 103.283325195000032, + 10.588928223000039 + ], + [ + 103.282897949000073, + 10.592712402000075 + ], + [ + 103.282104492000087, + 10.598327637000068 + ], + [ + 103.280700684000067, + 10.602905273000033 + ], + [ + 103.279479980000076, + 10.606079102000024 + ], + [ + 103.279296875000057, + 10.610107422000056 + ], + [ + 103.282104492000087, + 10.613708496000072 + ], + [ + 103.283874512000068, + 10.616271973000039 + ], + [ + 103.286315918000071, + 10.618713379000042 + ], + [ + 103.289489746000072, + 10.620727539000029 + ], + [ + 103.292907715000069, + 10.622680664000029 + ], + [ + 103.295104980000076, + 10.620483398000033 + ], + [ + 103.297912598000039, + 10.617675781000059 + ], + [ + 103.302490234000061, + 10.617126465000069 + ], + [ + 103.305297852000081, + 10.618103027000075 + ], + [ + 103.307495117000087, + 10.620117187000062 + ], + [ + 103.309082031000059, + 10.623474121000072 + ], + [ + 103.3125, + 10.624694824000073 + ], + [ + 103.316894531000059, + 10.622070312000062 + ], + [ + 103.315673828000058, + 10.618286133000026 + ] + ] + ], + [ + [ + [ + 103.474670410000044, + 10.63311767600004 + ], + [ + 103.477478027000075, + 10.629882812000062 + ], + [ + 103.481872559000067, + 10.629882812000062 + ], + [ + 103.485107422000056, + 10.631896973000039 + ], + [ + 103.487670898000033, + 10.628479004000042 + ], + [ + 103.485107422000056, + 10.625671387000068 + ], + [ + 103.483093262000068, + 10.623291016000053 + ], + [ + 103.479675293000071, + 10.623107910000044 + ], + [ + 103.476074219000054, + 10.62530517600004 + ], + [ + 103.472900391000053, + 10.627685547000056 + ], + [ + 103.473083496000072, + 10.630676270000038 + ], + [ + 103.474670410000044, + 10.63311767600004 + ] + ] + ], + [ + [ + [ + 103.302490234000061, + 10.628479004000042 + ], + [ + 103.299316406000059, + 10.626708984000061 + ], + [ + 103.296508789000086, + 10.628112793000071 + ], + [ + 103.296875, + 10.631103516000053 + ], + [ + 103.298278809000067, + 10.634521484000061 + ], + [ + 103.302673340000069, + 10.635925293000071 + ], + [ + 103.304504395000038, + 10.632324219000054 + ], + [ + 103.302490234000061, + 10.628479004000042 + ] + ] + ], + [ + [ + [ + 103.249694824000073, + 10.766723633000026 + ], + [ + 103.251098633000083, + 10.762329102000024 + ], + [ + 103.253295898000033, + 10.757690430000025 + ], + [ + 103.256286621000072, + 10.754699707000043 + ], + [ + 103.256896973000039, + 10.751708984000061 + ], + [ + 103.256713867000087, + 10.748718262000068 + ], + [ + 103.257324219000054, + 10.745300293000071 + ], + [ + 103.258483887000068, + 10.741271973000039 + ], + [ + 103.255493164000086, + 10.737915039000029 + ], + [ + 103.253295898000033, + 10.735290527000075 + ], + [ + 103.254699707000043, + 10.730285645000038 + ], + [ + 103.257080078000058, + 10.726501465000069 + ], + [ + 103.260681152000075, + 10.726318359000061 + ], + [ + 103.261718750000057, + 10.722106934000067 + ], + [ + 103.266113281000059, + 10.718505859000061 + ], + [ + 103.269104004000042, + 10.720886230000076 + ], + [ + 103.271484375000057, + 10.723876953000058 + ], + [ + 103.27569580100004, + 10.722290039000029 + ], + [ + 103.279907227000081, + 10.722717285000044 + ], + [ + 103.282897949000073, + 10.725524902000075 + ], + [ + 103.286926270000038, + 10.724121094000054 + ], + [ + 103.289672852000081, + 10.722473145000038 + ], + [ + 103.289916992000087, + 10.719482422000056 + ], + [ + 103.292724609000061, + 10.715087891000053 + ], + [ + 103.295715332000043, + 10.710510254000042 + ], + [ + 103.292480469000054, + 10.70788574200003 + ], + [ + 103.29132080100004, + 10.705078125000057 + ], + [ + 103.29327392600004, + 10.702270508000026 + ], + [ + 103.298522949000073, + 10.700317383000026 + ], + [ + 103.302307129000042, + 10.701110840000069 + ], + [ + 103.304687500000057, + 10.703918457000043 + ], + [ + 103.306518555000082, + 10.707702637000068 + ], + [ + 103.309082031000059, + 10.711486816000047 + ], + [ + 103.313293457000043, + 10.710510254000042 + ], + [ + 103.314270020000038, + 10.706909180000025 + ], + [ + 103.313476562000062, + 10.702880859000061 + ], + [ + 103.315307617000087, + 10.69952392600004 + ], + [ + 103.314514160000044, + 10.696289062000062 + ], + [ + 103.312927246000072, + 10.693908691000047 + ], + [ + 103.310913086000085, + 10.690673828000058 + ], + [ + 103.307922363000046, + 10.688293457000043 + ], + [ + 103.304687500000057, + 10.687316895000038 + ], + [ + 103.301330566000047, + 10.683715820000032 + ], + [ + 103.298522949000073, + 10.681091309000067 + ], + [ + 103.296325684000067, + 10.678894043000071 + ], + [ + 103.292724609000061, + 10.682678223000039 + ], + [ + 103.288879395000038, + 10.682678223000039 + ], + [ + 103.285095215000069, + 10.681701660000044 + ], + [ + 103.280700684000067, + 10.679077148000033 + ], + [ + 103.278320312000062, + 10.673706055000025 + ], + [ + 103.276916504000042, + 10.670288086000028 + ], + [ + 103.273681641000053, + 10.668884277000075 + ], + [ + 103.272521973000039, + 10.666076660000044 + ], + [ + 103.272705078000058, + 10.662475586000028 + ], + [ + 103.272094727000081, + 10.658874512000068 + ], + [ + 103.269714355000076, + 10.655883789000029 + ], + [ + 103.268310547000056, + 10.652893066000047 + ], + [ + 103.264892578000058, + 10.651916504000042 + ], + [ + 103.261901855000076, + 10.653076172000056 + ], + [ + 103.259887695000032, + 10.655883789000029 + ], + [ + 103.258911133000083, + 10.660095215000069 + ], + [ + 103.258300781000059, + 10.664123535000044 + ], + [ + 103.257873535000044, + 10.668884277000075 + ], + [ + 103.258483887000068, + 10.673095703000058 + ], + [ + 103.25811767600004, + 10.676513672000056 + ], + [ + 103.257080078000058, + 10.679870605000076 + ], + [ + 103.256103516000053, + 10.683471680000025 + ], + [ + 103.254272461000085, + 10.688110352000024 + ], + [ + 103.253112793000071, + 10.691284180000025 + ], + [ + 103.251708984000061, + 10.694519043000071 + ], + [ + 103.249877930000082, + 10.698730469000054 + ], + [ + 103.247314453000058, + 10.702087402000075 + ], + [ + 103.244689941000047, + 10.705078125000057 + ], + [ + 103.241882324000073, + 10.707275391000053 + ], + [ + 103.237304687000062, + 10.709106445000032 + ], + [ + 103.233703613000046, + 10.709899902000075 + ], + [ + 103.229919434000067, + 10.709106445000032 + ], + [ + 103.229492187000062, + 10.705871582000043 + ], + [ + 103.226928711000085, + 10.702880859000061 + ], + [ + 103.223510742000087, + 10.702087402000075 + ], + [ + 103.220275879000042, + 10.702514648000033 + ], + [ + 103.216491699000073, + 10.703308105000076 + ], + [ + 103.213073730000076, + 10.704528809000067 + ], + [ + 103.210510254000042, + 10.705688477000024 + ], + [ + 103.208496094000054, + 10.708923340000069 + ], + [ + 103.205078125000057, + 10.712524414000029 + ], + [ + 103.201721191000047, + 10.716918945000032 + ], + [ + 103.203918457000043, + 10.721313477000024 + ], + [ + 103.202514648000033, + 10.724487305000025 + ], + [ + 103.200927734000061, + 10.727111816000047 + ], + [ + 103.202087402000075, + 10.730529785000044 + ], + [ + 103.202270508000083, + 10.73468017600004 + ], + [ + 103.198486328000058, + 10.737670898000033 + ], + [ + 103.193725586000085, + 10.738708496000072 + ], + [ + 103.190917969000054, + 10.735717773000033 + ], + [ + 103.187927246000072, + 10.732910156000059 + ], + [ + 103.184875488000046, + 10.73327636700003 + ], + [ + 103.182495117000087, + 10.736511230000076 + ], + [ + 103.183288574000073, + 10.739318848000039 + ], + [ + 103.185485840000069, + 10.741516113000046 + ], + [ + 103.187316895000038, + 10.744873047000056 + ], + [ + 103.188293457000043, + 10.748107910000044 + ], + [ + 103.189514160000044, + 10.751098633000026 + ], + [ + 103.190917969000054, + 10.753906250000057 + ], + [ + 103.190917969000054, + 10.757324219000054 + ], + [ + 103.189880371000072, + 10.762084961000028 + ], + [ + 103.190673828000058, + 10.766296387000068 + ], + [ + 103.192321777000075, + 10.768920898000033 + ], + [ + 103.194885254000042, + 10.771118164000029 + ], + [ + 103.198303223000039, + 10.771301270000038 + ], + [ + 103.202270508000083, + 10.770507812000062 + ], + [ + 103.205871582000043, + 10.768127441000047 + ], + [ + 103.209106445000032, + 10.766113281000059 + ], + [ + 103.212280273000033, + 10.765686035000044 + ], + [ + 103.215515137000068, + 10.765319824000073 + ], + [ + 103.220275879000042, + 10.765502930000025 + ], + [ + 103.225097656000059, + 10.768127441000047 + ], + [ + 103.228698730000076, + 10.771728516000053 + ], + [ + 103.230712891000053, + 10.775085449000073 + ], + [ + 103.230895996000072, + 10.779724121000072 + ], + [ + 103.235290527000075, + 10.779113770000038 + ], + [ + 103.240112305000082, + 10.778686523000033 + ], + [ + 103.245300293000071, + 10.777282715000069 + ], + [ + 103.250122070000032, + 10.775085449000073 + ], + [ + 103.255493164000086, + 10.772888184000067 + ], + [ + 103.255310059000067, + 10.769714355000076 + ], + [ + 103.252685547000056, + 10.768310547000056 + ], + [ + 103.249694824000073, + 10.766723633000026 + ] + ] + ], + [ + [ + [ + 104.060119629000042, + 11.353698730000076 + ], + [ + 104.057678223000039, + 11.351318359000061 + ], + [ + 104.053100586000085, + 11.352294922000056 + ], + [ + 104.048522949000073, + 11.351501465000069 + ], + [ + 104.046691895000038, + 11.344726562000062 + ], + [ + 104.045104980000076, + 11.341674805000025 + ], + [ + 104.044128418000071, + 11.338928223000039 + ], + [ + 104.042114258000083, + 11.335510254000042 + ], + [ + 104.040710449000073, + 11.332092285000044 + ], + [ + 104.040283203000058, + 11.328674316000047 + ], + [ + 104.040283203000058, + 11.32507324200003 + ], + [ + 104.041076660000044, + 11.321899414000029 + ], + [ + 104.043518066000047, + 11.318481445000032 + ], + [ + 104.044494629000042, + 11.314086914000029 + ], + [ + 104.043518066000047, + 11.310302734000061 + ], + [ + 104.043090820000032, + 11.307128906000059 + ], + [ + 104.044494629000042, + 11.304504395000038 + ], + [ + 104.044921875000057, + 11.300903320000032 + ], + [ + 104.045471191000047, + 11.298095703000058 + ], + [ + 104.045898437000062, + 11.294677734000061 + ], + [ + 104.046691895000038, + 11.290283203000058 + ], + [ + 104.047485352000081, + 11.286315918000071 + ], + [ + 104.047729492000087, + 11.282287598000039 + ], + [ + 104.049316406000059, + 11.277709961000028 + ], + [ + 104.05108642600004, + 11.275085449000073 + ], + [ + 104.051513672000056, + 11.271484375000057 + ], + [ + 104.050720215000069, + 11.267700195000032 + ], + [ + 104.048095703000058, + 11.263671875000057 + ], + [ + 104.045471191000047, + 11.259704590000069 + ], + [ + 104.04327392600004, + 11.256286621000072 + ], + [ + 104.040893555000082, + 11.252319336000028 + ], + [ + 104.036682129000042, + 11.249511719000054 + ], + [ + 104.034912109000061, + 11.246520996000072 + ], + [ + 104.034118652000075, + 11.243530273000033 + ], + [ + 104.032104492000087, + 11.240112305000025 + ], + [ + 104.031921387000068, + 11.237121582000043 + ], + [ + 104.029113770000038, + 11.233703613000046 + ], + [ + 104.027099609000061, + 11.229675293000071 + ], + [ + 104.027282715000069, + 11.225891113000046 + ], + [ + 104.026672363000046, + 11.220703125000057 + ], + [ + 104.025512695000032, + 11.216491699000073 + ], + [ + 104.022705078000058, + 11.213317871000072 + ], + [ + 104.021118164000086, + 11.20928955100004 + ], + [ + 104.021728516000053, + 11.205078125000057 + ], + [ + 104.026489258000083, + 11.206298828000058 + ], + [ + 104.031677246000072, + 11.206909180000025 + ], + [ + 104.035522461000085, + 11.207519531000059 + ], + [ + 104.039306641000053, + 11.208129883000026 + ], + [ + 104.040710449000073, + 11.204895020000038 + ], + [ + 104.040710449000073, + 11.200500488000046 + ], + [ + 104.040710449000073, + 11.197082520000038 + ], + [ + 104.041687012000068, + 11.193115234000061 + ], + [ + 104.04327392600004, + 11.188110352000024 + ], + [ + 104.041076660000044, + 11.185119629000042 + ], + [ + 104.038330078000058, + 11.182678223000039 + ], + [ + 104.037292480000076, + 11.179870605000076 + ], + [ + 104.040100098000039, + 11.177124023000033 + ], + [ + 104.04327392600004, + 11.175109863000046 + ], + [ + 104.047729492000087, + 11.173095703000058 + ], + [ + 104.052124023000033, + 11.171081543000071 + ], + [ + 104.055725098000039, + 11.167724609000061 + ], + [ + 104.059082031000059, + 11.163330078000058 + ], + [ + 104.062072754000042, + 11.159729004000042 + ], + [ + 104.064086914000086, + 11.156921387000068 + ], + [ + 104.067687988000046, + 11.152709961000028 + ], + [ + 104.069519043000071, + 11.150085449000073 + ], + [ + 104.070922852000081, + 11.146911621000072 + ], + [ + 104.070922852000081, + 11.143676758000026 + ], + [ + 104.070922852000081, + 11.140075684000067 + ], + [ + 104.070922852000081, + 11.136901855000076 + ], + [ + 104.070922852000081, + 11.133728027000075 + ], + [ + 104.070495605000076, + 11.130493164000029 + ], + [ + 104.070312500000057, + 11.126708984000061 + ], + [ + 104.070678711000085, + 11.121520996000072 + ], + [ + 104.070312500000057, + 11.11608886700003 + ], + [ + 104.070129395000038, + 11.112304687000062 + ], + [ + 104.069519043000071, + 11.107910156000059 + ], + [ + 104.070129395000038, + 11.104919434000067 + ], + [ + 104.071289062000062, + 11.101684570000032 + ], + [ + 104.072509766000053, + 11.098083496000072 + ], + [ + 104.073303223000039, + 11.095275879000042 + ], + [ + 104.074279785000044, + 11.091674805000025 + ], + [ + 104.075073242000087, + 11.087707520000038 + ], + [ + 104.075317383000083, + 11.082275391000053 + ], + [ + 104.07647705100004, + 11.078674316000047 + ], + [ + 104.077270508000083, + 11.075683594000054 + ], + [ + 104.076110840000069, + 11.071716309000067 + ], + [ + 104.073730469000054, + 11.068115234000061 + ], + [ + 104.070678711000085, + 11.066101074000073 + ], + [ + 104.067504883000083, + 11.06530761700003 + ], + [ + 104.064880371000072, + 11.064086914000029 + ], + [ + 104.060729980000076, + 11.061889648000033 + ], + [ + 104.059875488000046, + 11.058105469000054 + ], + [ + 104.062072754000042, + 11.055480957000043 + ], + [ + 104.064880371000072, + 11.052673340000069 + ], + [ + 104.067687988000046, + 11.04968261700003 + ], + [ + 104.069885254000042, + 11.047119141000053 + ], + [ + 104.072082520000038, + 11.044677734000061 + ], + [ + 104.074890137000068, + 11.041687012000068 + ], + [ + 104.075073242000087, + 11.037109375000057 + ], + [ + 104.074279785000044, + 11.032470703000058 + ], + [ + 104.071899414000086, + 11.028686523000033 + ], + [ + 104.067871094000054, + 11.025329590000069 + ], + [ + 104.064514160000044, + 11.025512695000032 + ], + [ + 104.061706543000071, + 11.02429199200003 + ], + [ + 104.057495117000087, + 11.021911621000072 + ], + [ + 104.054077148000033, + 11.019287109000061 + ], + [ + 104.051513672000056, + 11.017089844000054 + ], + [ + 104.048889160000044, + 11.015075684000067 + ], + [ + 104.046081543000071, + 11.013488770000038 + ], + [ + 104.041687012000068, + 11.012512207000043 + ], + [ + 104.037292480000076, + 11.011718750000057 + ], + [ + 104.034118652000075, + 11.011474609000061 + ], + [ + 104.029113770000038, + 11.011108398000033 + ], + [ + 104.02569580100004, + 11.010314941000047 + ], + [ + 104.022094727000081, + 11.009521484000061 + ], + [ + 104.020324707000043, + 11.012512207000043 + ], + [ + 104.019470215000069, + 11.016296387000068 + ], + [ + 104.018127441000047, + 11.019714355000076 + ], + [ + 104.015075684000067, + 11.020690918000071 + ], + [ + 104.010498047000056, + 11.019470215000069 + ], + [ + 104.005676270000038, + 11.018920898000033 + ], + [ + 104.001281738000046, + 11.020507812000062 + ], + [ + 103.996704102000081, + 11.019897461000028 + ], + [ + 103.994079590000069, + 11.017700195000032 + ], + [ + 103.991271973000039, + 11.01452636700003 + ], + [ + 103.988525391000053, + 11.011474609000061 + ], + [ + 103.986511230000076, + 11.009094238000046 + ], + [ + 103.984130859000061, + 11.00671386700003 + ], + [ + 103.980712891000053, + 11.002502441000047 + ], + [ + 103.977905273000033, + 10.999511719000054 + ], + [ + 103.975097656000059, + 10.996093750000057 + ], + [ + 103.971923828000058, + 10.993286133000026 + ], + [ + 103.967529297000056, + 10.99108886700003 + ], + [ + 103.963073730000076, + 10.987670898000033 + ], + [ + 103.960327148000033, + 10.985900879000042 + ], + [ + 103.956298828000058, + 10.984130859000061 + ], + [ + 103.952880859000061, + 10.981506348000039 + ], + [ + 103.950683594000054, + 10.979675293000071 + ], + [ + 103.948486328000058, + 10.977722168000071 + ], + [ + 103.946289062000062, + 10.975891113000046 + ], + [ + 103.942687988000046, + 10.973693848000039 + ], + [ + 103.938293457000043, + 10.971130371000072 + ], + [ + 103.936706543000071, + 10.968688965000069 + ], + [ + 103.935119629000042, + 10.966308594000054 + ], + [ + 103.932678223000039, + 10.963684082000043 + ], + [ + 103.930114746000072, + 10.962097168000071 + ], + [ + 103.927124023000033, + 10.960876465000069 + ], + [ + 103.923522949000073, + 10.959472656000059 + ], + [ + 103.919311523000033, + 10.957702637000068 + ], + [ + 103.916076660000044, + 10.955078125000057 + ], + [ + 103.918090820000032, + 10.950927734000061 + ], + [ + 103.920715332000043, + 10.946716309000067 + ], + [ + 103.925720215000069, + 10.944885254000042 + ], + [ + 103.928527832000043, + 10.944274902000075 + ], + [ + 103.931091309000067, + 10.942871094000054 + ], + [ + 103.933471680000082, + 10.940490723000039 + ], + [ + 103.934326172000056, + 10.927673340000069 + ], + [ + 103.934509277000075, + 10.923889160000044 + ], + [ + 103.932678223000039, + 10.920715332000043 + ], + [ + 103.932128906000059, + 10.916076660000044 + ], + [ + 103.933105469000054, + 10.911499023000033 + ], + [ + 103.933471680000082, + 10.906677246000072 + ], + [ + 103.933288574000073, + 10.902893066000047 + ], + [ + 103.931518555000082, + 10.899475098000039 + ], + [ + 103.926879883000083, + 10.89929199200003 + ], + [ + 103.924316406000059, + 10.895690918000071 + ], + [ + 103.923095703000058, + 10.890319824000073 + ], + [ + 103.922302246000072, + 10.88507080100004 + ], + [ + 103.921081543000071, + 10.882324219000054 + ], + [ + 103.918884277000075, + 10.878479004000042 + ], + [ + 103.919311523000033, + 10.87390136700003 + ], + [ + 103.922912598000039, + 10.871520996000072 + ], + [ + 103.926879883000083, + 10.869506836000028 + ], + [ + 103.929504395000038, + 10.86749267600004 + ], + [ + 103.931701660000044, + 10.864074707000043 + ], + [ + 103.928283691000047, + 10.861328125000057 + ], + [ + 103.924072266000053, + 10.859130859000061 + ], + [ + 103.922485352000081, + 10.855529785000044 + ], + [ + 103.922912598000039, + 10.851684570000032 + ], + [ + 103.923889160000044, + 10.848876953000058 + ], + [ + 103.92608642600004, + 10.846130371000072 + ], + [ + 103.928894043000071, + 10.843505859000061 + ], + [ + 103.931701660000044, + 10.841674805000025 + ], + [ + 103.935302734000061, + 10.839294434000067 + ], + [ + 103.937683105000076, + 10.836303711000028 + ], + [ + 103.939270020000038, + 10.832702637000068 + ], + [ + 103.941284180000082, + 10.829284668000071 + ], + [ + 103.943481445000032, + 10.825927734000061 + ], + [ + 103.945495605000076, + 10.821716309000067 + ], + [ + 103.942871094000054, + 10.818298340000069 + ], + [ + 103.941894531000059, + 10.814514160000044 + ], + [ + 103.939086914000086, + 10.8125 + ], + [ + 103.937316895000038, + 10.809692383000026 + ], + [ + 103.936096191000047, + 10.806884766000053 + ], + [ + 103.934509277000075, + 10.804321289000029 + ], + [ + 103.933288574000073, + 10.801696777000075 + ], + [ + 103.933105469000054, + 10.798278809000067 + ], + [ + 103.933471680000082, + 10.794494629000042 + ], + [ + 103.934692383000083, + 10.791503906000059 + ], + [ + 103.935913086000085, + 10.788513184000067 + ], + [ + 103.935302734000061, + 10.785278320000032 + ], + [ + 103.934875488000046, + 10.78210449200003 + ], + [ + 103.933105469000054, + 10.777893066000047 + ], + [ + 103.922302246000072, + 10.769104004000042 + ], + [ + 103.922485352000081, + 10.764709473000039 + ], + [ + 103.923706055000082, + 10.761108398000033 + ], + [ + 103.924072266000053, + 10.757873535000044 + ], + [ + 103.924072266000053, + 10.754516602000024 + ], + [ + 103.923889160000044, + 10.751525879000042 + ], + [ + 103.924316406000059, + 10.748291016000053 + ], + [ + 103.926330566000047, + 10.744079590000069 + ], + [ + 103.928894043000071, + 10.739929199000073 + ], + [ + 103.931091309000067, + 10.736328125000057 + ], + [ + 103.933471680000082, + 10.732482910000044 + ], + [ + 103.935729980000076, + 10.728515625000057 + ], + [ + 103.937683105000076, + 10.724304199000073 + ], + [ + 103.939880371000072, + 10.721313477000024 + ], + [ + 103.941894531000059, + 10.718872070000032 + ], + [ + 103.944091797000056, + 10.715087891000053 + ], + [ + 103.946472168000071, + 10.712097168000071 + ], + [ + 103.950683594000054, + 10.710876465000069 + ], + [ + 103.954895020000038, + 10.709472656000059 + ], + [ + 103.957275391000053, + 10.707702637000068 + ], + [ + 103.958679199000073, + 10.704895020000038 + ], + [ + 103.960510254000042, + 10.701293945000032 + ], + [ + 103.962097168000071, + 10.698303223000039 + ], + [ + 103.962890625000057, + 10.695129395000038 + ], + [ + 103.963073730000076, + 10.690490723000039 + ], + [ + 103.963500977000081, + 10.685485840000069 + ], + [ + 103.964721680000082, + 10.682922363000046 + ], + [ + 103.964904785000044, + 10.679077148000033 + ], + [ + 103.966491699000073, + 10.676330566000047 + ], + [ + 103.967529297000056, + 10.671691895000038 + ], + [ + 103.966918945000032, + 10.667297363000046 + ], + [ + 103.965881348000039, + 10.663513184000067 + ], + [ + 103.965515137000068, + 10.659912109000061 + ], + [ + 103.963684082000043, + 10.655517578000058 + ], + [ + 103.961120605000076, + 10.651123047000056 + ], + [ + 103.959716797000056, + 10.646728516000053 + ], + [ + 103.957702637000068, + 10.643493652000075 + ], + [ + 103.956115723000039, + 10.639282227000024 + ], + [ + 103.955078125000057, + 10.634094238000046 + ], + [ + 103.953491211000085, + 10.630310059000067 + ], + [ + 103.953125, + 10.625122070000032 + ], + [ + 103.949707031000059, + 10.623107910000044 + ], + [ + 103.946472168000071, + 10.622497559000067 + ], + [ + 103.943481445000032, + 10.619506836000028 + ], + [ + 103.94171142600004, + 10.616699219000054 + ], + [ + 103.939270020000038, + 10.620300293000071 + ], + [ + 103.935729980000076, + 10.619079590000069 + ], + [ + 103.932678223000039, + 10.621704102000024 + ], + [ + 103.929870605000076, + 10.619079590000069 + ], + [ + 103.930480957000043, + 10.615478516000053 + ], + [ + 103.926879883000083, + 10.614501953000058 + ], + [ + 103.923706055000082, + 10.611694336000028 + ], + [ + 103.920288086000085, + 10.60827636700003 + ], + [ + 103.916870117000087, + 10.611877441000047 + ], + [ + 103.915100098000039, + 10.616882324000073 + ], + [ + 103.913513184000067, + 10.620483398000033 + ], + [ + 103.912109375000057, + 10.623474121000072 + ], + [ + 103.909912109000061, + 10.627685547000056 + ], + [ + 103.907897949000073, + 10.632507324000073 + ], + [ + 103.904724121000072, + 10.63507080100004 + ], + [ + 103.902709961000085, + 10.638916016000053 + ], + [ + 103.903686523000033, + 10.643310547000056 + ], + [ + 103.904296875000057, + 10.647888184000067 + ], + [ + 103.902526855000076, + 10.651306152000075 + ], + [ + 103.898681641000053, + 10.652893066000047 + ], + [ + 103.895080566000047, + 10.654479980000076 + ], + [ + 103.891723633000083, + 10.655883789000029 + ], + [ + 103.887695312000062, + 10.657714844000054 + ], + [ + 103.882873535000044, + 10.659301758000026 + ], + [ + 103.879699707000043, + 10.657287598000039 + ], + [ + 103.875488281000059, + 10.655883789000029 + ], + [ + 103.871276855000076, + 10.653686523000033 + ], + [ + 103.867919922000056, + 10.653503418000071 + ], + [ + 103.864074707000043, + 10.654479980000076 + ], + [ + 103.861328125000057, + 10.656921387000068 + ], + [ + 103.855895996000072, + 10.655517578000058 + ], + [ + 103.853698730000076, + 10.653320312000062 + ], + [ + 103.852905273000033, + 10.650085449000073 + ], + [ + 103.853088379000042, + 10.645324707000043 + ], + [ + 103.855285645000038, + 10.641113281000059 + ], + [ + 103.857299805000082, + 10.638122559000067 + ], + [ + 103.858520508000083, + 10.634277344000054 + ], + [ + 103.860107422000056, + 10.631286621000072 + ], + [ + 103.864501953000058, + 10.63311767600004 + ], + [ + 103.867919922000056, + 10.630310059000067 + ], + [ + 103.868713379000042, + 10.626281738000046 + ], + [ + 103.868103027000075, + 10.622070312000062 + ], + [ + 103.866088867000087, + 10.618530273000033 + ], + [ + 103.864318848000039, + 10.615905762000068 + ], + [ + 103.862304687000062, + 10.613281250000057 + ], + [ + 103.860290527000075, + 10.611083984000061 + ], + [ + 103.857482910000044, + 10.607910156000059 + ], + [ + 103.854919434000067, + 10.604309082000043 + ], + [ + 103.852294922000056, + 10.600708008000026 + ], + [ + 103.849670410000044, + 10.597106934000067 + ], + [ + 103.848083496000072, + 10.594726562000062 + ], + [ + 103.845886230000076, + 10.592285156000059 + ], + [ + 103.843505859000061, + 10.589294434000067 + ], + [ + 103.839904785000044, + 10.585083008000026 + ], + [ + 103.836914062000062, + 10.581298828000058 + ], + [ + 103.833923340000069, + 10.576904297000056 + ], + [ + 103.831115723000039, + 10.572875977000024 + ], + [ + 103.829101562000062, + 10.570129395000038 + ], + [ + 103.827514648000033, + 10.567687988000046 + ], + [ + 103.825683594000054, + 10.564880371000072 + ], + [ + 103.823120117000087, + 10.560485840000069 + ], + [ + 103.820312500000057, + 10.555725098000039 + ], + [ + 103.817871094000054, + 10.55108642600004 + ], + [ + 103.815124512000068, + 10.548522949000073 + ], + [ + 103.813720703000058, + 10.543518066000047 + ], + [ + 103.811706543000071, + 10.539672852000024 + ], + [ + 103.810302734000061, + 10.536926270000038 + ], + [ + 103.809082031000059, + 10.534118652000075 + ], + [ + 103.807495117000087, + 10.530883789000029 + ], + [ + 103.805908203000058, + 10.527282715000069 + ], + [ + 103.804077148000033, + 10.52429199200003 + ], + [ + 103.801513672000056, + 10.521118164000029 + ], + [ + 103.796691895000038, + 10.519470215000069 + ], + [ + 103.792297363000046, + 10.520874023000033 + ], + [ + 103.789123535000044, + 10.523681641000053 + ], + [ + 103.785095215000069, + 10.527526855000076 + ], + [ + 103.782287598000039, + 10.531494141000053 + ], + [ + 103.783325195000032, + 10.535522461000028 + ], + [ + 103.779907227000081, + 10.536499023000033 + ], + [ + 103.776306152000075, + 10.536071777000075 + ], + [ + 103.771728516000053, + 10.533874512000068 + ], + [ + 103.76788330100004, + 10.530700684000067 + ], + [ + 103.762878418000071, + 10.53210449200003 + ], + [ + 103.758483887000068, + 10.531921387000068 + ], + [ + 103.755126953000058, + 10.531494141000053 + ], + [ + 103.750671387000068, + 10.534301758000026 + ], + [ + 103.747314453000058, + 10.535888672000056 + ], + [ + 103.744079590000069, + 10.537902832000043 + ], + [ + 103.740478516000053, + 10.539489746000072 + ], + [ + 103.737487793000071, + 10.540527344000054 + ], + [ + 103.734130859000061, + 10.542480469000054 + ], + [ + 103.730285645000038, + 10.54327392600004 + ], + [ + 103.729492187000062, + 10.548095703000058 + ], + [ + 103.729492187000062, + 10.552673340000069 + ], + [ + 103.725524902000075, + 10.553527832000043 + ], + [ + 103.722290039000086, + 10.555297852000024 + ], + [ + 103.719299316000047, + 10.555297852000024 + ], + [ + 103.71710205100004, + 10.552307129000042 + ], + [ + 103.715698242000087, + 10.548706055000025 + ], + [ + 103.71710205100004, + 10.544494629000042 + ], + [ + 103.720275879000042, + 10.542724609000061 + ], + [ + 103.723083496000072, + 10.540893555000025 + ], + [ + 103.725524902000075, + 10.537719727000024 + ], + [ + 103.727294922000056, + 10.534301758000026 + ], + [ + 103.730895996000072, + 10.53210449200003 + ], + [ + 103.735473633000083, + 10.529479980000076 + ], + [ + 103.736511230000076, + 10.525878906000059 + ], + [ + 103.737121582000043, + 10.522521973000039 + ], + [ + 103.737121582000043, + 10.51788330100004 + ], + [ + 103.735900879000042, + 10.513671875000057 + ], + [ + 103.735717773000033, + 10.509277344000054 + ], + [ + 103.733886719000054, + 10.505676270000038 + ], + [ + 103.732482910000044, + 10.502929687000062 + ], + [ + 103.730529785000044, + 10.50030517600004 + ], + [ + 103.728271484000061, + 10.498474121000072 + ], + [ + 103.725280762000068, + 10.497924805000025 + ], + [ + 103.722717285000044, + 10.50030517600004 + ], + [ + 103.720092773000033, + 10.501708984000061 + ], + [ + 103.717529297000056, + 10.502929687000062 + ], + [ + 103.714111328000058, + 10.504516602000024 + ], + [ + 103.709106445000032, + 10.506103516000053 + ], + [ + 103.704284668000071, + 10.507873535000044 + ], + [ + 103.700317383000083, + 10.508483887000068 + ], + [ + 103.696105957000043, + 10.507690430000025 + ], + [ + 103.69171142600004, + 10.508300781000059 + ], + [ + 103.688720703000058, + 10.509094238000046 + ], + [ + 103.684509277000075, + 10.509704590000069 + ], + [ + 103.679687500000057, + 10.509704590000069 + ], + [ + 103.676513672000056, + 10.509094238000046 + ], + [ + 103.674072266000053, + 10.50671386700003 + ], + [ + 103.672729492000087, + 10.501525879000042 + ], + [ + 103.669128418000071, + 10.501281738000046 + ], + [ + 103.666076660000044, + 10.502319336000028 + ], + [ + 103.662719727000081, + 10.502929687000062 + ], + [ + 103.659118652000075, + 10.502319336000028 + ], + [ + 103.655883789000086, + 10.499694824000073 + ], + [ + 103.651672363000046, + 10.499328613000046 + ], + [ + 103.646301270000038, + 10.498718262000068 + ], + [ + 103.642272949000073, + 10.495300293000071 + ], + [ + 103.643127441000047, + 10.49108886700003 + ], + [ + 103.639892578000058, + 10.490112305000025 + ], + [ + 103.636718750000057, + 10.490112305000025 + ], + [ + 103.632324219000054, + 10.488891602000024 + ], + [ + 103.628723145000038, + 10.49108886700003 + ], + [ + 103.627075195000032, + 10.493713379000042 + ], + [ + 103.625915527000075, + 10.496276855000076 + ], + [ + 103.622070312000062, + 10.497497559000067 + ], + [ + 103.616882324000073, + 10.498474121000072 + ], + [ + 103.613708496000072, + 10.500122070000032 + ], + [ + 103.611083984000061, + 10.502319336000028 + ], + [ + 103.608520508000083, + 10.504089355000076 + ], + [ + 103.60968017600004, + 10.508300781000059 + ], + [ + 103.610290527000075, + 10.511901855000076 + ], + [ + 103.610717773000033, + 10.515686035000044 + ], + [ + 103.610290527000075, + 10.521118164000029 + ], + [ + 103.610717773000033, + 10.525329590000069 + ], + [ + 103.612304687000062, + 10.528320312000062 + ], + [ + 103.614074707000043, + 10.53210449200003 + ], + [ + 103.613098145000038, + 10.537109375000057 + ], + [ + 103.611694336000085, + 10.540283203000058 + ], + [ + 103.610107422000056, + 10.543518066000047 + ], + [ + 103.607910156000059, + 10.546691895000038 + ], + [ + 103.605529785000044, + 10.54968261700003 + ], + [ + 103.602111816000047, + 10.553527832000043 + ], + [ + 103.599121094000054, + 10.555908203000058 + ], + [ + 103.594482422000056, + 10.558715820000032 + ], + [ + 103.590087891000053, + 10.562316895000038 + ], + [ + 103.586730957000043, + 10.559509277000075 + ], + [ + 103.584106445000032, + 10.557678223000039 + ], + [ + 103.581909180000082, + 10.554687500000057 + ], + [ + 103.579284668000071, + 10.551879883000026 + ], + [ + 103.576293945000032, + 10.547485352000024 + ], + [ + 103.572509766000053, + 10.543884277000075 + ], + [ + 103.568481445000032, + 10.541076660000044 + ], + [ + 103.564697266000053, + 10.540100098000039 + ], + [ + 103.563720703000058, + 10.544128418000071 + ], + [ + 103.562683105000076, + 10.548522949000073 + ], + [ + 103.561523437000062, + 10.553100586000028 + ], + [ + 103.561096191000047, + 10.558105469000054 + ], + [ + 103.558105469000054, + 10.559875488000046 + ], + [ + 103.556274414000086, + 10.563110352000024 + ], + [ + 103.553894043000071, + 10.566528320000032 + ], + [ + 103.552124023000033, + 10.570495605000076 + ], + [ + 103.549316406000059, + 10.57507324200003 + ], + [ + 103.546508789000086, + 10.579284668000071 + ], + [ + 103.543701172000056, + 10.58288574200003 + ], + [ + 103.541503906000059, + 10.584899902000075 + ], + [ + 103.539123535000044, + 10.589477539000029 + ], + [ + 103.536499023000033, + 10.592712402000075 + ], + [ + 103.533691406000059, + 10.595886230000076 + ], + [ + 103.531677246000072, + 10.598327637000068 + ], + [ + 103.529724121000072, + 10.600524902000075 + ], + [ + 103.526672363000046, + 10.603088379000042 + ], + [ + 103.524475098000039, + 10.605102539000029 + ], + [ + 103.520690918000071, + 10.606872559000067 + ], + [ + 103.517089844000054, + 10.605895996000072 + ], + [ + 103.514709473000039, + 10.607910156000059 + ], + [ + 103.512695312000062, + 10.610290527000075 + ], + [ + 103.509277344000054, + 10.609924316000047 + ], + [ + 103.506286621000072, + 10.609924316000047 + ], + [ + 103.503723145000038, + 10.607299805000025 + ], + [ + 103.501525879000042, + 10.610717773000033 + ], + [ + 103.497497559000067, + 10.614501953000058 + ], + [ + 103.494689941000047, + 10.616271973000039 + ], + [ + 103.492675781000059, + 10.618713379000042 + ], + [ + 103.490722656000059, + 10.620910645000038 + ], + [ + 103.490722656000059, + 10.624084473000039 + ], + [ + 103.493530273000033, + 10.626708984000061 + ], + [ + 103.496093750000057, + 10.629882812000062 + ], + [ + 103.498474121000072, + 10.633728027000075 + ], + [ + 103.50030517600004, + 10.638671875000057 + ], + [ + 103.50030517600004, + 10.642700195000032 + ], + [ + 103.500671387000068, + 10.646118164000029 + ], + [ + 103.503906250000057, + 10.646911621000072 + ], + [ + 103.508483887000068, + 10.648498535000044 + ], + [ + 103.512695312000062, + 10.647888184000067 + ], + [ + 103.516479492000087, + 10.650512695000032 + ], + [ + 103.518676758000083, + 10.654113770000038 + ], + [ + 103.519897461000085, + 10.658691406000059 + ], + [ + 103.520324707000043, + 10.663085937000062 + ], + [ + 103.521118164000086, + 10.667114258000026 + ], + [ + 103.525512695000032, + 10.669128418000071 + ], + [ + 103.527709961000085, + 10.67272949200003 + ], + [ + 103.528503418000071, + 10.675476074000073 + ], + [ + 103.530883789000086, + 10.678894043000071 + ], + [ + 103.534118652000075, + 10.681518555000025 + ], + [ + 103.537109375000057, + 10.680725098000039 + ], + [ + 103.539916992000087, + 10.682312012000068 + ], + [ + 103.541687012000068, + 10.684875488000046 + ], + [ + 103.54327392600004, + 10.688720703000058 + ], + [ + 103.543518066000047, + 10.692504883000026 + ], + [ + 103.544494629000042, + 10.695312500000057 + ], + [ + 103.545104980000076, + 10.699279785000044 + ], + [ + 103.544677734000061, + 10.703918457000043 + ], + [ + 103.544677734000061, + 10.707275391000053 + ], + [ + 103.544311523000033, + 10.711914062000062 + ], + [ + 103.544128418000071, + 10.716125488000046 + ], + [ + 103.543884277000075, + 10.720520020000038 + ], + [ + 103.546875, + 10.720275879000042 + ], + [ + 103.550476074000073, + 10.720275879000042 + ], + [ + 103.554321289000086, + 10.721679687000062 + ], + [ + 103.557678223000039, + 10.721679687000062 + ], + [ + 103.558471680000082, + 10.724487305000025 + ], + [ + 103.561279297000056, + 10.723693848000039 + ], + [ + 103.564880371000072, + 10.725708008000026 + ], + [ + 103.567504883000083, + 10.726928711000028 + ], + [ + 103.569702148000033, + 10.729919434000067 + ], + [ + 103.571899414000086, + 10.733703613000046 + ], + [ + 103.574707031000059, + 10.735717773000033 + ], + [ + 103.577087402000075, + 10.738891602000024 + ], + [ + 103.579284668000071, + 10.741882324000073 + ], + [ + 103.583129883000083, + 10.742675781000059 + ], + [ + 103.586120605000076, + 10.740295410000044 + ], + [ + 103.588684082000043, + 10.738708496000072 + ], + [ + 103.591918945000032, + 10.736511230000076 + ], + [ + 103.595520020000038, + 10.735717773000033 + ], + [ + 103.598510742000087, + 10.735900879000042 + ], + [ + 103.601928711000085, + 10.736328125000057 + ], + [ + 103.604919434000067, + 10.737304687000062 + ], + [ + 103.608276367000087, + 10.736083984000061 + ], + [ + 103.612487793000071, + 10.736694336000028 + ], + [ + 103.614929199000073, + 10.738708496000072 + ], + [ + 103.616271973000039, + 10.742675781000059 + ], + [ + 103.618530273000033, + 10.746704102000024 + ], + [ + 103.622314453000058, + 10.747314453000058 + ], + [ + 103.625671387000068, + 10.744323730000076 + ], + [ + 103.629272461000085, + 10.743286133000026 + ], + [ + 103.631896973000039, + 10.739685059000067 + ], + [ + 103.636291504000042, + 10.738708496000072 + ], + [ + 103.64093017600004, + 10.740112305000025 + ], + [ + 103.644104004000042, + 10.742309570000032 + ], + [ + 103.647094727000081, + 10.744323730000076 + ], + [ + 103.65069580100004, + 10.744689941000047 + ], + [ + 103.653686523000033, + 10.743713379000042 + ], + [ + 103.657714844000054, + 10.743103027000075 + ], + [ + 103.662109375000057, + 10.744079590000069 + ], + [ + 103.661315918000071, + 10.747314453000058 + ], + [ + 103.662292480000076, + 10.755126953000058 + ], + [ + 103.661071777000075, + 10.758911133000026 + ], + [ + 103.660278320000032, + 10.761901855000076 + ], + [ + 103.657714844000054, + 10.764709473000039 + ], + [ + 103.658325195000032, + 10.768920898000033 + ], + [ + 103.662109375000057, + 10.768676758000026 + ], + [ + 103.665283203000058, + 10.769104004000042 + ], + [ + 103.667907715000069, + 10.771911621000072 + ], + [ + 103.669494629000042, + 10.775085449000073 + ], + [ + 103.670715332000043, + 10.778076172000056 + ], + [ + 103.671508789000086, + 10.780883789000029 + ], + [ + 103.671508789000086, + 10.784484863000046 + ], + [ + 103.671691895000038, + 10.788696289000029 + ], + [ + 103.671508789000086, + 10.793884277000075 + ], + [ + 103.670471191000047, + 10.798706055000025 + ], + [ + 103.672302246000072, + 10.801879883000026 + ], + [ + 103.673278809000067, + 10.806518555000025 + ], + [ + 103.675476074000073, + 10.809692383000026 + ], + [ + 103.679077148000033, + 10.810302734000061 + ], + [ + 103.682678223000039, + 10.814086914000029 + ], + [ + 103.685119629000042, + 10.818725586000028 + ], + [ + 103.688293457000043, + 10.820922852000024 + ], + [ + 103.692687988000046, + 10.822082520000038 + ], + [ + 103.697875977000081, + 10.823913574000073 + ], + [ + 103.701904297000056, + 10.827880859000061 + ], + [ + 103.704101562000062, + 10.831726074000073 + ], + [ + 103.705871582000043, + 10.834716797000056 + ], + [ + 103.708129883000083, + 10.837097168000071 + ], + [ + 103.709472656000059, + 10.839904785000044 + ], + [ + 103.710876465000069, + 10.843872070000032 + ], + [ + 103.711914062000062, + 10.84851074200003 + ], + [ + 103.712707520000038, + 10.852905273000033 + ], + [ + 103.712280273000033, + 10.856872559000067 + ], + [ + 103.712280273000033, + 10.860717773000033 + ], + [ + 103.712524414000086, + 10.864501953000058 + ], + [ + 103.712280273000033, + 10.868103027000075 + ], + [ + 103.712280273000033, + 10.871276855000076 + ], + [ + 103.711914062000062, + 10.874694824000073 + ], + [ + 103.711303711000085, + 10.877502441000047 + ], + [ + 103.710876465000069, + 10.880920410000044 + ], + [ + 103.710083008000083, + 10.88507080100004 + ], + [ + 103.708923340000069, + 10.890075684000067 + ], + [ + 103.707702637000068, + 10.894714355000076 + ], + [ + 103.706726074000073, + 10.898498535000044 + ], + [ + 103.704895020000038, + 10.903076172000056 + ], + [ + 103.705688477000081, + 10.906311035000044 + ], + [ + 103.708923340000069, + 10.906311035000044 + ], + [ + 103.712890625000057, + 10.908325195000032 + ], + [ + 103.712280273000033, + 10.903503418000071 + ], + [ + 103.716308594000054, + 10.900085449000073 + ], + [ + 103.718505859000061, + 10.896728516000053 + ], + [ + 103.721496582000043, + 10.896118164000029 + ], + [ + 103.724487305000082, + 10.895507812000062 + ], + [ + 103.727478027000075, + 10.897277832000043 + ], + [ + 103.727478027000075, + 10.902526855000076 + ], + [ + 103.730712891000053, + 10.904724121000072 + ], + [ + 103.733276367000087, + 10.901306152000075 + ], + [ + 103.736694336000085, + 10.898925781000059 + ], + [ + 103.737121582000043, + 10.901916504000042 + ], + [ + 103.740112305000082, + 10.903503418000071 + ], + [ + 103.743103027000075, + 10.905090332000043 + ], + [ + 103.745117187000062, + 10.907287598000039 + ], + [ + 103.746276855000076, + 10.911926270000038 + ], + [ + 103.749084473000039, + 10.914489746000072 + ], + [ + 103.752929687000062, + 10.914306641000053 + ], + [ + 103.751281738000046, + 10.917480469000054 + ], + [ + 103.753479004000042, + 10.920715332000043 + ], + [ + 103.757507324000073, + 10.922302246000072 + ], + [ + 103.762329102000081, + 10.924072266000053 + ], + [ + 103.765686035000044, + 10.927124023000033 + ], + [ + 103.767272949000073, + 10.931518555000025 + ], + [ + 103.770324707000043, + 10.930908203000058 + ], + [ + 103.773071289000086, + 10.931701660000044 + ], + [ + 103.776916504000042, + 10.934082031000059 + ], + [ + 103.780883789000086, + 10.935485840000069 + ], + [ + 103.784484863000046, + 10.935302734000061 + ], + [ + 103.787902832000043, + 10.936279297000056 + ], + [ + 103.792907715000069, + 10.937927246000072 + ], + [ + 103.797119141000053, + 10.939514160000044 + ], + [ + 103.795104980000076, + 10.943725586000028 + ], + [ + 103.793518066000047, + 10.947082520000038 + ], + [ + 103.791870117000087, + 10.950683594000054 + ], + [ + 103.790893555000082, + 10.954101562000062 + ], + [ + 103.79132080100004, + 10.957702637000068 + ], + [ + 103.792114258000083, + 10.961730957000043 + ], + [ + 103.792114258000083, + 10.96569824200003 + ], + [ + 103.791503906000059, + 10.968872070000032 + ], + [ + 103.791870117000087, + 10.973327637000068 + ], + [ + 103.793090820000032, + 10.977294922000056 + ], + [ + 103.793701172000056, + 10.981079102000024 + ], + [ + 103.793090820000032, + 10.984130859000061 + ], + [ + 103.792907715000069, + 10.987304687000062 + ], + [ + 103.792480469000054, + 10.99108886700003 + ], + [ + 103.791870117000087, + 10.994689941000047 + ], + [ + 103.790710449000073, + 10.997314453000058 + ], + [ + 103.788513184000067, + 11.003112793000071 + ], + [ + 103.787475586000085, + 11.006896973000039 + ], + [ + 103.787475586000085, + 11.010498047000056 + ], + [ + 103.786926270000038, + 11.01452636700003 + ], + [ + 103.786315918000071, + 11.018676758000026 + ], + [ + 103.785888672000056, + 11.023498535000044 + ], + [ + 103.790283203000058, + 11.037109375000057 + ], + [ + 103.791687012000068, + 11.040710449000073 + ], + [ + 103.793884277000075, + 11.042907715000069 + ], + [ + 103.796325684000067, + 11.047119141000053 + ], + [ + 103.801696777000075, + 11.04772949200003 + ], + [ + 103.805480957000043, + 11.048706055000025 + ], + [ + 103.808105469000054, + 11.050109863000046 + ], + [ + 103.810913086000085, + 11.051696777000075 + ], + [ + 103.814086914000086, + 11.053283691000047 + ], + [ + 103.817321777000075, + 11.055480957000043 + ], + [ + 103.822509766000053, + 11.057128906000059 + ], + [ + 103.824890137000068, + 11.060729980000076 + ], + [ + 103.827087402000075, + 11.064514160000044 + ], + [ + 103.829711914000086, + 11.067504883000026 + ], + [ + 103.832092285000044, + 11.070129395000038 + ], + [ + 103.835083008000083, + 11.072509766000053 + ], + [ + 103.841125488000046, + 11.072692871000072 + ], + [ + 103.846496582000043, + 11.072692871000072 + ], + [ + 103.846679687000062, + 11.075927734000061 + ], + [ + 103.848327637000068, + 11.078918457000043 + ], + [ + 103.845092773000033, + 11.079284668000071 + ], + [ + 103.842529297000056, + 11.080688477000024 + ], + [ + 103.846130371000072, + 11.083129883000026 + ], + [ + 103.844909668000071, + 11.087524414000029 + ], + [ + 103.841125488000046, + 11.085327148000033 + ], + [ + 103.841918945000032, + 11.089721680000025 + ], + [ + 103.839904785000044, + 11.093078613000046 + ], + [ + 103.840270996000072, + 11.097106934000067 + ], + [ + 103.844909668000071, + 11.100524902000075 + ], + [ + 103.848510742000087, + 11.101684570000032 + ], + [ + 103.851501465000069, + 11.103698730000076 + ], + [ + 103.854675293000071, + 11.106872559000067 + ], + [ + 103.856872559000067, + 11.10968017600004 + ], + [ + 103.859130859000061, + 11.113281250000057 + ], + [ + 103.859130859000061, + 11.117126465000069 + ], + [ + 103.860900879000042, + 11.120727539000029 + ], + [ + 103.864074707000043, + 11.122497559000067 + ], + [ + 103.863891602000081, + 11.127929687000062 + ], + [ + 103.863891602000081, + 11.131286621000072 + ], + [ + 103.868530273000033, + 11.132690430000025 + ], + [ + 103.871887207000043, + 11.135925293000071 + ], + [ + 103.871276855000076, + 11.139709473000039 + ], + [ + 103.870910645000038, + 11.143127441000047 + ], + [ + 103.871093750000057, + 11.146118164000029 + ], + [ + 103.871887207000043, + 11.149108887000068 + ], + [ + 103.874877930000082, + 11.150329590000069 + ], + [ + 103.877319336000085, + 11.153320312000062 + ], + [ + 103.879882812000062, + 11.154724121000072 + ], + [ + 103.882324219000054, + 11.153076172000056 + ], + [ + 103.88507080100004, + 11.155273437000062 + ], + [ + 103.886718750000057, + 11.158325195000032 + ], + [ + 103.885498047000056, + 11.161682129000042 + ], + [ + 103.883911133000083, + 11.164672852000024 + ], + [ + 103.881286621000072, + 11.167297363000046 + ], + [ + 103.881286621000072, + 11.172302246000072 + ], + [ + 103.877929687000062, + 11.17468261700003 + ], + [ + 103.877075195000032, + 11.178527832000043 + ], + [ + 103.874511719000054, + 11.182128906000059 + ], + [ + 103.874511719000054, + 11.186523437000062 + ], + [ + 103.873474121000072, + 11.189880371000072 + ], + [ + 103.872680664000086, + 11.193481445000032 + ], + [ + 103.871093750000057, + 11.197326660000044 + ], + [ + 103.869079590000069, + 11.200927734000061 + ], + [ + 103.868896484000061, + 11.203918457000043 + ], + [ + 103.866882324000073, + 11.207519531000059 + ], + [ + 103.863281250000057, + 11.211730957000043 + ], + [ + 103.860290527000075, + 11.214294434000067 + ], + [ + 103.857910156000059, + 11.217529297000056 + ], + [ + 103.854919434000067, + 11.219726562000062 + ], + [ + 103.851684570000032, + 11.222106934000067 + ], + [ + 103.854919434000067, + 11.224304199000073 + ], + [ + 103.860290527000075, + 11.226074219000054 + ], + [ + 103.862915039000086, + 11.229492187000062 + ], + [ + 103.864929199000073, + 11.232116699000073 + ], + [ + 103.86749267600004, + 11.236328125000057 + ], + [ + 103.869873047000056, + 11.239318848000039 + ], + [ + 103.872497559000067, + 11.240722656000059 + ], + [ + 103.873291016000053, + 11.243713379000042 + ], + [ + 103.873718262000068, + 11.247070312000062 + ], + [ + 103.872314453000058, + 11.250122070000032 + ], + [ + 103.872680664000086, + 11.253479004000042 + ], + [ + 103.875915527000075, + 11.256103516000053 + ], + [ + 103.877929687000062, + 11.26007080100004 + ], + [ + 103.881286621000072, + 11.260498047000056 + ], + [ + 103.884277344000054, + 11.263122559000067 + ], + [ + 103.887084961000085, + 11.266296387000068 + ], + [ + 103.885681152000075, + 11.269897461000028 + ], + [ + 103.884521484000061, + 11.272705078000058 + ], + [ + 103.886718750000057, + 11.275329590000069 + ], + [ + 103.891296387000068, + 11.276306152000075 + ], + [ + 103.894470215000069, + 11.277709961000028 + ], + [ + 103.898315430000082, + 11.280883789000029 + ], + [ + 103.901123047000056, + 11.284484863000046 + ], + [ + 103.902282715000069, + 11.288879395000038 + ], + [ + 103.901916504000042, + 11.292907715000069 + ], + [ + 103.900878906000059, + 11.297302246000072 + ], + [ + 103.902526855000076, + 11.30108642600004 + ], + [ + 103.904479980000076, + 11.303710937000062 + ], + [ + 103.906677246000072, + 11.306518555000025 + ], + [ + 103.909118652000075, + 11.309509277000075 + ], + [ + 103.912292480000076, + 11.313110352000024 + ], + [ + 103.91632080100004, + 11.317504883000026 + ], + [ + 103.920898437000062, + 11.321105957000043 + ], + [ + 103.922485352000081, + 11.323913574000073 + ], + [ + 103.925292969000054, + 11.326904297000056 + ], + [ + 103.928527832000043, + 11.331115723000039 + ], + [ + 103.932678223000039, + 11.335327148000033 + ], + [ + 103.936706543000071, + 11.339721680000025 + ], + [ + 103.941284180000082, + 11.345092773000033 + ], + [ + 103.945312500000057, + 11.349670410000044 + ], + [ + 103.949096680000082, + 11.354125977000024 + ], + [ + 103.952697754000042, + 11.358520508000026 + ], + [ + 103.956909180000082, + 11.365112305000025 + ], + [ + 103.961120605000076, + 11.370483398000033 + ], + [ + 103.963317871000072, + 11.373107910000044 + ], + [ + 103.966308594000054, + 11.376708984000061 + ], + [ + 103.969116211000085, + 11.380676270000038 + ], + [ + 103.972290039000086, + 11.384887695000032 + ], + [ + 103.975891113000046, + 11.388916016000053 + ], + [ + 103.978698730000076, + 11.391723633000026 + ], + [ + 103.982116699000073, + 11.394287109000061 + ], + [ + 103.984497070000032, + 11.396911621000072 + ], + [ + 103.987121582000043, + 11.39929199200003 + ], + [ + 103.989929199000073, + 11.401306152000075 + ], + [ + 103.992919922000056, + 11.402893066000047 + ], + [ + 103.996704102000081, + 11.404724121000072 + ], + [ + 104.000488281000059, + 11.40710449200003 + ], + [ + 104.004089355000076, + 11.409912109000061 + ], + [ + 104.007690430000082, + 11.412475586000028 + ], + [ + 104.011108398000033, + 11.41491699200003 + ], + [ + 104.014526367000087, + 11.417297363000046 + ], + [ + 104.018493652000075, + 11.419677734000061 + ], + [ + 104.022705078000058, + 11.422485352000024 + ], + [ + 104.027526855000076, + 11.426330566000047 + ], + [ + 104.032714844000054, + 11.430114746000072 + ], + [ + 104.038085937000062, + 11.433715820000032 + ], + [ + 104.041870117000087, + 11.435913086000028 + ], + [ + 104.041870117000087, + 11.432128906000059 + ], + [ + 104.044494629000042, + 11.427917480000076 + ], + [ + 104.044128418000071, + 11.422912598000039 + ], + [ + 104.043884277000075, + 11.418090820000032 + ], + [ + 104.044677734000061, + 11.41491699200003 + ], + [ + 104.045471191000047, + 11.412109375000057 + ], + [ + 104.047119141000053, + 11.409301758000026 + ], + [ + 104.051513672000056, + 11.404907227000024 + ], + [ + 104.053283691000047, + 11.400512695000032 + ], + [ + 104.052673340000069, + 11.396728516000053 + ], + [ + 104.051513672000056, + 11.393127441000047 + ], + [ + 104.050903320000032, + 11.389892578000058 + ], + [ + 104.050292969000054, + 11.386291504000042 + ], + [ + 104.05108642600004, + 11.383300781000059 + ], + [ + 104.052917480000076, + 11.379272461000028 + ], + [ + 104.054504395000038, + 11.375915527000075 + ], + [ + 104.057312012000068, + 11.373107910000044 + ], + [ + 104.061096191000047, + 11.369873047000056 + ], + [ + 104.061096191000047, + 11.364929199000073 + ], + [ + 104.060485840000069, + 11.360900879000042 + ], + [ + 104.059692383000083, + 11.35772705100004 + ], + [ + 104.060119629000042, + 11.353698730000076 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 6.3080585644399996, + "Shape_Area": 1.1738657112799999, + "ADM1_EN": "Preah Vihear", + "ADM1_PCODE": "KH13", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 104.834899902000075, + 14.409484863000046 + ], + [ + 104.834472656000059, + 14.405090332000043 + ], + [ + 104.833923340000069, + 14.401489258000026 + ], + [ + 104.835876465000069, + 14.399108887000068 + ], + [ + 104.839477539000086, + 14.398681641000053 + ], + [ + 104.840698242000087, + 14.402526855000076 + ], + [ + 104.843322754000042, + 14.403930664000029 + ], + [ + 104.846496582000043, + 14.404724121000072 + ], + [ + 104.850097656000059, + 14.405883789000029 + ], + [ + 104.853088379000042, + 14.40710449200003 + ], + [ + 104.855529785000044, + 14.408691406000059 + ], + [ + 104.857910156000059, + 14.411499023000033 + ], + [ + 104.861083984000061, + 14.409484863000046 + ], + [ + 104.864501953000058, + 14.411682129000042 + ], + [ + 104.867309570000089, + 14.415100098000039 + ], + [ + 104.871520996000072, + 14.417907715000069 + ], + [ + 104.87530517600004, + 14.415710449000073 + ], + [ + 104.877929687000062, + 14.413085937000062 + ], + [ + 104.882324219000054, + 14.411315918000071 + ], + [ + 104.886291504000042, + 14.410095215000069 + ], + [ + 104.890319824000073, + 14.408325195000032 + ], + [ + 104.893920898000033, + 14.406494141000053 + ], + [ + 104.897521973000039, + 14.406127930000025 + ], + [ + 104.900085449000073, + 14.404113770000038 + ], + [ + 104.902526855000076, + 14.401489258000026 + ], + [ + 104.905090332000043, + 14.399902344000054 + ], + [ + 104.909118652000075, + 14.399475098000039 + ], + [ + 104.912719727000081, + 14.39929199200003 + ], + [ + 104.917114258000083, + 14.399108887000068 + ], + [ + 104.921325684000067, + 14.400878906000059 + ], + [ + 104.923889160000044, + 14.399719238000046 + ], + [ + 104.926696777000075, + 14.397705078000058 + ], + [ + 104.929504395000038, + 14.395690918000071 + ], + [ + 104.932495117000087, + 14.393676758000026 + ], + [ + 104.935913086000085, + 14.392700195000032 + ], + [ + 104.938110352000081, + 14.39093017600004 + ], + [ + 104.939697266000053, + 14.388488770000038 + ], + [ + 104.941528320000089, + 14.385925293000071 + ], + [ + 104.944091797000056, + 14.383483887000068 + ], + [ + 104.947326660000044, + 14.382324219000054 + ], + [ + 104.950683594000054, + 14.381530762000068 + ], + [ + 104.954101562000062, + 14.381286621000072 + ], + [ + 104.956481934000067, + 14.383300781000059 + ], + [ + 104.956726074000073, + 14.387329102000024 + ], + [ + 104.959106445000089, + 14.391113281000059 + ], + [ + 104.962890625000057, + 14.389282227000024 + ], + [ + 104.966308594000054, + 14.389709473000039 + ], + [ + 104.969116211000085, + 14.391906738000046 + ], + [ + 104.973327637000068, + 14.392089844000054 + ], + [ + 104.975708008000083, + 14.389892578000058 + ], + [ + 104.977722168000071, + 14.387329102000024 + ], + [ + 104.981323242000087, + 14.386108398000033 + ], + [ + 104.984497070000089, + 14.384521484000061 + ], + [ + 104.987121582000043, + 14.382324219000054 + ], + [ + 104.989501953000058, + 14.379699707000043 + ], + [ + 104.993530273000033, + 14.379089355000076 + ], + [ + 104.994079590000069, + 14.376098633000026 + ], + [ + 104.995727539000086, + 14.373107910000044 + ], + [ + 104.997497559000067, + 14.370483398000033 + ], + [ + 105.000122070000089, + 14.367675781000059 + ], + [ + 105.002502441000047, + 14.364074707000043 + ], + [ + 105.002319336000085, + 14.360717773000033 + ], + [ + 105.00030517600004, + 14.357116699000073 + ], + [ + 104.999328613000046, + 14.352478027000075 + ], + [ + 104.996704102000081, + 14.348327637000068 + ], + [ + 104.993896484000061, + 14.345275879000042 + ], + [ + 104.992675781000059, + 14.341674805000025 + ], + [ + 104.993286133000083, + 14.337890625000057 + ], + [ + 104.99249267600004, + 14.334106445000032 + ], + [ + 104.993286133000083, + 14.330322266000053 + ], + [ + 104.993103027000075, + 14.327087402000075 + ], + [ + 104.992126465000069, + 14.323730469000054 + ], + [ + 104.989501953000058, + 14.321105957000043 + ], + [ + 104.985473633000083, + 14.319519043000071 + ], + [ + 104.987487793000071, + 14.31530761700003 + ], + [ + 104.990905762000068, + 14.311706543000071 + ], + [ + 104.994689941000047, + 14.309326172000056 + ], + [ + 104.997680664000086, + 14.306884766000053 + ], + [ + 105.000488281000059, + 14.305297852000024 + ], + [ + 105.002685547000056, + 14.302673340000069 + ], + [ + 105.004272461000085, + 14.298706055000025 + ], + [ + 105.004272461000085, + 14.293884277000075 + ], + [ + 105.005676270000038, + 14.290100098000039 + ], + [ + 105.008911133000083, + 14.285705566000047 + ], + [ + 105.011718750000057, + 14.281311035000044 + ], + [ + 105.013671875000057, + 14.278320312000062 + ], + [ + 105.015686035000044, + 14.274902344000054 + ], + [ + 105.016723633000083, + 14.270507812000062 + ], + [ + 105.018493652000075, + 14.267517090000069 + ], + [ + 105.021301270000038, + 14.264282227000024 + ], + [ + 105.025878906000059, + 14.263916016000053 + ], + [ + 105.024902344000054, + 14.261108398000033 + ], + [ + 105.023315430000082, + 14.258728027000075 + ], + [ + 105.022277832000043, + 14.254882812000062 + ], + [ + 105.021118164000086, + 14.251098633000026 + ], + [ + 105.021118164000086, + 14.247314453000058 + ], + [ + 105.022094727000081, + 14.243530273000033 + ], + [ + 105.023681641000053, + 14.240295410000044 + ], + [ + 105.026123047000056, + 14.238098145000038 + ], + [ + 105.029907227000081, + 14.237304687000062 + ], + [ + 105.032897949000073, + 14.233886719000054 + ], + [ + 105.036926270000038, + 14.230712891000053 + ], + [ + 105.040100098000039, + 14.228881836000028 + ], + [ + 105.044311523000033, + 14.227478027000075 + ], + [ + 105.046691895000038, + 14.224670410000044 + ], + [ + 105.047729492000087, + 14.220275879000042 + ], + [ + 105.050109863000046, + 14.215515137000068 + ], + [ + 105.054504395000038, + 14.214477539000029 + ], + [ + 105.058715820000089, + 14.214111328000058 + ], + [ + 105.064270020000038, + 14.213500977000024 + ], + [ + 105.068298340000069, + 14.213073730000076 + ], + [ + 105.071289062000062, + 14.213073730000076 + ], + [ + 105.075683594000054, + 14.213073730000076 + ], + [ + 105.079101562000062, + 14.212097168000071 + ], + [ + 105.081726074000073, + 14.210083008000026 + ], + [ + 105.085327148000033, + 14.210083008000026 + ], + [ + 105.087890625000057, + 14.211914062000062 + ], + [ + 105.092895508000083, + 14.215270996000072 + ], + [ + 105.098083496000072, + 14.214904785000044 + ], + [ + 105.103088379000042, + 14.213317871000072 + ], + [ + 105.108276367000087, + 14.213928223000039 + ], + [ + 105.111694336000085, + 14.216491699000073 + ], + [ + 105.113525391000053, + 14.219482422000056 + ], + [ + 105.116271973000039, + 14.222106934000067 + ], + [ + 105.120910645000038, + 14.22351074200003 + ], + [ + 105.126098633000083, + 14.22491455100004 + ], + [ + 105.130310059000067, + 14.227905273000033 + ], + [ + 105.133483887000068, + 14.231506348000039 + ], + [ + 105.137695312000062, + 14.234497070000032 + ], + [ + 105.141479492000087, + 14.237121582000043 + ], + [ + 105.144714355000076, + 14.240295410000044 + ], + [ + 105.147094727000081, + 14.243713379000042 + ], + [ + 105.148681641000053, + 14.246887207000043 + ], + [ + 105.151306152000075, + 14.249877930000025 + ], + [ + 105.153686523000033, + 14.253723145000038 + ], + [ + 105.153503418000071, + 14.257873535000044 + ], + [ + 105.15069580100004, + 14.259887695000032 + ], + [ + 105.147521973000039, + 14.259277344000054 + ], + [ + 105.144470215000069, + 14.260681152000075 + ], + [ + 105.147888184000067, + 14.26452636700003 + ], + [ + 105.15069580100004, + 14.266296387000068 + ], + [ + 105.153076172000056, + 14.268493652000075 + ], + [ + 105.152526855000076, + 14.271911621000072 + ], + [ + 105.150512695000089, + 14.276123047000056 + ], + [ + 105.150512695000089, + 14.280517578000058 + ], + [ + 105.151306152000075, + 14.284301758000026 + ], + [ + 105.153503418000071, + 14.287109375000057 + ], + [ + 105.156311035000044, + 14.288330078000058 + ], + [ + 105.159912109000061, + 14.288513184000067 + ], + [ + 105.160522461000085, + 14.29187011700003 + ], + [ + 105.160522461000085, + 14.296691895000038 + ], + [ + 105.161071777000075, + 14.300903320000032 + ], + [ + 105.164916992000087, + 14.303100586000028 + ], + [ + 105.168701172000056, + 14.304077148000033 + ], + [ + 105.170288086000085, + 14.306701660000044 + ], + [ + 105.171875, + 14.309509277000075 + ], + [ + 105.175109863000046, + 14.311706543000071 + ], + [ + 105.177124023000033, + 14.315917969000054 + ], + [ + 105.176879883000083, + 14.319274902000075 + ], + [ + 105.175476074000073, + 14.322082520000038 + ], + [ + 105.171508789000086, + 14.324096680000025 + ], + [ + 105.168090820000089, + 14.326293945000032 + ], + [ + 105.167480469000054, + 14.329284668000071 + ], + [ + 105.168701172000056, + 14.331909180000025 + ], + [ + 105.168701172000056, + 14.335083008000026 + ], + [ + 105.171081543000071, + 14.337890625000057 + ], + [ + 105.173278809000067, + 14.341918945000032 + ], + [ + 105.175109863000046, + 14.344726562000062 + ], + [ + 105.178527832000043, + 14.345092773000033 + ], + [ + 105.182678223000039, + 14.342285156000059 + ], + [ + 105.187683105000076, + 14.342895508000026 + ], + [ + 105.191101074000073, + 14.345520020000038 + ], + [ + 105.193481445000089, + 14.347106934000067 + ], + [ + 105.196289062000062, + 14.348083496000072 + ], + [ + 105.19952392600004, + 14.34851074200003 + ], + [ + 105.204101562000062, + 14.345520020000038 + ], + [ + 105.206726074000073, + 14.341674805000025 + ], + [ + 105.205688477000081, + 14.337097168000071 + ], + [ + 105.207275391000053, + 14.333312988000046 + ], + [ + 105.206909180000082, + 14.329895020000038 + ], + [ + 105.206298828000058, + 14.326110840000069 + ], + [ + 105.206115723000039, + 14.320678711000028 + ], + [ + 105.205871582000043, + 14.315917969000054 + ], + [ + 105.207275391000053, + 14.311279297000056 + ], + [ + 105.20928955100004, + 14.308471680000025 + ], + [ + 105.212280273000033, + 14.306274414000029 + ], + [ + 105.215087891000053, + 14.303710937000062 + ], + [ + 105.217529297000056, + 14.299926758000026 + ], + [ + 105.220520020000038, + 14.295715332000043 + ], + [ + 105.222290039000086, + 14.292114258000026 + ], + [ + 105.223083496000072, + 14.288513184000067 + ], + [ + 105.223876953000058, + 14.285522461000028 + ], + [ + 105.226074219000054, + 14.283081055000025 + ], + [ + 105.230102539000086, + 14.281127930000025 + ], + [ + 105.234924316000047, + 14.279113770000038 + ], + [ + 105.237304687000062, + 14.277282715000069 + ], + [ + 105.239929199000073, + 14.274475098000039 + ], + [ + 105.241516113000046, + 14.271484375000057 + ], + [ + 105.24249267600004, + 14.268676758000026 + ], + [ + 105.243896484000061, + 14.265502930000025 + ], + [ + 105.245910645000038, + 14.262512207000043 + ], + [ + 105.247070312000062, + 14.259277344000054 + ], + [ + 105.247314453000058, + 14.255676270000038 + ], + [ + 105.247680664000086, + 14.251892090000069 + ], + [ + 105.247497559000067, + 14.247680664000029 + ], + [ + 105.246887207000043, + 14.242675781000059 + ], + [ + 105.248291016000053, + 14.239074707000043 + ], + [ + 105.248901367000087, + 14.23468017600004 + ], + [ + 105.250122070000089, + 14.230712891000053 + ], + [ + 105.253723145000038, + 14.229125977000024 + ], + [ + 105.256530762000068, + 14.226501465000069 + ], + [ + 105.256103516000053, + 14.222717285000044 + ], + [ + 105.257507324000073, + 14.219116211000028 + ], + [ + 105.257507324000073, + 14.216125488000046 + ], + [ + 105.257080078000058, + 14.212097168000071 + ], + [ + 105.259277344000054, + 14.207519531000059 + ], + [ + 105.263305664000086, + 14.205871582000043 + ], + [ + 105.265319824000073, + 14.203674316000047 + ], + [ + 105.267089844000054, + 14.200927734000061 + ], + [ + 105.266906738000046, + 14.196105957000043 + ], + [ + 105.270690918000071, + 14.193725586000028 + ], + [ + 105.272277832000043, + 14.190124512000068 + ], + [ + 105.274291992000087, + 14.185729980000076 + ], + [ + 105.275085449000073, + 14.182678223000039 + ], + [ + 105.276123047000056, + 14.179870605000076 + ], + [ + 105.275512695000089, + 14.176879883000026 + ], + [ + 105.278320312000062, + 14.17468261700003 + ], + [ + 105.282104492000087, + 14.171691895000038 + ], + [ + 105.285705566000047, + 14.170715332000043 + ], + [ + 105.288696289000086, + 14.169921875000057 + ], + [ + 105.292724609000061, + 14.172119141000053 + ], + [ + 105.297912598000039, + 14.169677734000061 + ], + [ + 105.298278809000067, + 14.165893555000025 + ], + [ + 105.303100586000085, + 14.165100098000039 + ], + [ + 105.306518555000082, + 14.163330078000058 + ], + [ + 105.309692383000083, + 14.161071777000075 + ], + [ + 105.313476562000062, + 14.163513184000067 + ], + [ + 105.317077637000068, + 14.162292480000076 + ], + [ + 105.320129395000038, + 14.163085937000062 + ], + [ + 105.321472168000071, + 14.160522461000028 + ], + [ + 105.324279785000044, + 14.157897949000073 + ], + [ + 105.323303223000039, + 14.153930664000029 + ], + [ + 105.327087402000075, + 14.15069580100004 + ], + [ + 105.325683594000054, + 14.146728516000053 + ], + [ + 105.327087402000075, + 14.143676758000026 + ], + [ + 105.329284668000071, + 14.141296387000068 + ], + [ + 105.333129883000083, + 14.139892578000058 + ], + [ + 105.335876465000069, + 14.138305664000029 + ], + [ + 105.338500977000081, + 14.134521484000061 + ], + [ + 105.341125488000046, + 14.129882812000062 + ], + [ + 105.344116211000085, + 14.126281738000046 + ], + [ + 105.347900391000053, + 14.126098633000026 + ], + [ + 105.348327637000068, + 14.122924805000025 + ], + [ + 105.351074219000054, + 14.120910645000038 + ], + [ + 105.352722168000071, + 14.117919922000056 + ], + [ + 105.355895996000072, + 14.116882324000073 + ], + [ + 105.357299805000082, + 14.113525391000053 + ], + [ + 105.357910156000059, + 14.110717773000033 + ], + [ + 105.360107422000056, + 14.108093262000068 + ], + [ + 105.362487793000071, + 14.105712891000053 + ], + [ + 105.366271973000039, + 14.104675293000071 + ], + [ + 105.369506836000085, + 14.106689453000058 + ], + [ + 105.371704102000081, + 14.103088379000042 + ], + [ + 105.376892090000069, + 14.103088379000042 + ], + [ + 105.382507324000073, + 14.105285645000038 + ], + [ + 105.387695312000062, + 14.103088379000042 + ], + [ + 105.391906738000046, + 14.100708008000026 + ], + [ + 105.396911621000072, + 14.101928711000028 + ], + [ + 105.40069580100004, + 14.104675293000071 + ], + [ + 105.403503418000071, + 14.102905273000033 + ], + [ + 105.406127930000082, + 14.106506348000039 + ], + [ + 105.407897949000073, + 14.110107422000056 + ], + [ + 105.413330078000058, + 14.110900879000042 + ], + [ + 105.417480469000054, + 14.10968017600004 + ], + [ + 105.419128418000071, + 14.106506348000039 + ], + [ + 105.422302246000072, + 14.105895996000072 + ], + [ + 105.425720215000069, + 14.107482910000044 + ], + [ + 105.428894043000071, + 14.10632324200003 + ], + [ + 105.432312012000068, + 14.106506348000039 + ], + [ + 105.435119629000042, + 14.10827636700003 + ], + [ + 105.438476562000062, + 14.107299805000025 + ], + [ + 105.442077637000068, + 14.10827636700003 + ], + [ + 105.445312500000057, + 14.107910156000059 + ], + [ + 105.445922852000081, + 14.104492187000062 + ], + [ + 105.448730469000054, + 14.103088379000042 + ], + [ + 105.451721191000047, + 14.102478027000075 + ], + [ + 105.455505371000072, + 14.103698730000076 + ], + [ + 105.457519531000059, + 14.107482910000044 + ], + [ + 105.459716797000056, + 14.110290527000075 + ], + [ + 105.463073730000076, + 14.111877441000047 + ], + [ + 105.467895508000083, + 14.113098145000038 + ], + [ + 105.472106934000067, + 14.116699219000054 + ], + [ + 105.474121094000054, + 14.120483398000033 + ], + [ + 105.478271484000061, + 14.118530273000033 + ], + [ + 105.48272705100004, + 14.118896484000061 + ], + [ + 105.486694336000085, + 14.120117187000062 + ], + [ + 105.490112305000082, + 14.122924805000025 + ], + [ + 105.490478516000053, + 14.125915527000075 + ], + [ + 105.494323730000076, + 14.128295898000033 + ], + [ + 105.498474121000072, + 14.129089355000076 + ], + [ + 105.499694824000073, + 14.133483887000068 + ], + [ + 105.503295898000033, + 14.133728027000075 + ], + [ + 105.506896973000039, + 14.132690430000025 + ], + [ + 105.509887695000089, + 14.134277344000054 + ], + [ + 105.513916016000053, + 14.134704590000069 + ], + [ + 105.516296387000068, + 14.136474609000061 + ], + [ + 105.518920898000033, + 14.138916016000053 + ], + [ + 105.521484375000057, + 14.141113281000059 + ], + [ + 105.524719238000046, + 14.142272949000073 + ], + [ + 105.528686523000033, + 14.142272949000073 + ], + [ + 105.531494141000053, + 14.145507812000062 + ], + [ + 105.535522461000085, + 14.149719238000046 + ], + [ + 105.538696289000086, + 14.151306152000075 + ], + [ + 105.541870117000087, + 14.151916504000042 + ], + [ + 105.544494629000042, + 14.153320312000062 + ], + [ + 105.546081543000071, + 14.155700684000067 + ], + [ + 105.550109863000046, + 14.15710449200003 + ], + [ + 105.553894043000071, + 14.159301758000026 + ], + [ + 105.556884766000053, + 14.160705566000047 + ], + [ + 105.560302734000061, + 14.159484863000046 + ], + [ + 105.563476562000062, + 14.157470703000058 + ], + [ + 105.567504883000083, + 14.155273437000062 + ], + [ + 105.570312500000057, + 14.152282715000069 + ], + [ + 105.572509766000053, + 14.149108887000068 + ], + [ + 105.57452392600004, + 14.144897461000028 + ], + [ + 105.578308105000076, + 14.142517090000069 + ], + [ + 105.580871582000043, + 14.14093017600004 + ], + [ + 105.583923340000069, + 14.139282227000024 + ], + [ + 105.587890625000057, + 14.139099121000072 + ], + [ + 105.585876465000069, + 14.14288330100004 + ], + [ + 105.584899902000075, + 14.145874023000033 + ], + [ + 105.585083008000083, + 14.148925781000059 + ], + [ + 105.588073730000076, + 14.148925781000059 + ], + [ + 105.590270996000072, + 14.146911621000072 + ], + [ + 105.593872070000089, + 14.145874023000033 + ], + [ + 105.598083496000072, + 14.147705078000058 + ], + [ + 105.602294922000056, + 14.147705078000058 + ], + [ + 105.604492187000062, + 14.144470215000069 + ], + [ + 105.608276367000087, + 14.144104004000042 + ], + [ + 105.608520508000083, + 14.140686035000044 + ], + [ + 105.608520508000083, + 14.135681152000075 + ], + [ + 105.610473633000083, + 14.13171386700003 + ], + [ + 105.613708496000072, + 14.128479004000042 + ], + [ + 105.617126465000069, + 14.126525879000042 + ], + [ + 105.617675781000059, + 14.130310059000067 + ], + [ + 105.619873047000056, + 14.134094238000046 + ], + [ + 105.622924805000082, + 14.132507324000073 + ], + [ + 105.625915527000075, + 14.130126953000058 + ], + [ + 105.629089355000076, + 14.130126953000058 + ], + [ + 105.632873535000044, + 14.130676270000038 + ], + [ + 105.63311767600004, + 14.127319336000028 + ], + [ + 105.630493164000086, + 14.125488281000059 + ], + [ + 105.632690430000082, + 14.123107910000044 + ], + [ + 105.635498047000056, + 14.118530273000033 + ], + [ + 105.634094238000046, + 14.114685059000067 + ], + [ + 105.632873535000044, + 14.111511230000076 + ], + [ + 105.63311767600004, + 14.107482910000044 + ], + [ + 105.636901855000076, + 14.104675293000071 + ], + [ + 105.640319824000073, + 14.101684570000032 + ], + [ + 105.642700195000089, + 14.099304199000073 + ], + [ + 105.645507812000062, + 14.097473145000038 + ], + [ + 105.648315430000082, + 14.098083496000072 + ], + [ + 105.648925781000059, + 14.101074219000054 + ], + [ + 105.649475098000039, + 14.104675293000071 + ], + [ + 105.650329590000069, + 14.108886719000054 + ], + [ + 105.654113770000038, + 14.111877441000047 + ], + [ + 105.657287598000039, + 14.110900879000042 + ], + [ + 105.660278320000089, + 14.110717773000033 + ], + [ + 105.660888672000056, + 14.114501953000058 + ], + [ + 105.657470703000058, + 14.115905762000068 + ], + [ + 105.655700684000067, + 14.118530273000033 + ], + [ + 105.659118652000075, + 14.120117187000062 + ], + [ + 105.662475586000085, + 14.118530273000033 + ], + [ + 105.666076660000044, + 14.114685059000067 + ], + [ + 105.670288086000085, + 14.112670898000033 + ], + [ + 105.673095703000058, + 14.111877441000047 + ], + [ + 105.677490234000061, + 14.110717773000033 + ], + [ + 105.682128906000059, + 14.108886719000054 + ], + [ + 105.683715820000089, + 14.105712891000053 + ], + [ + 105.685485840000069, + 14.102111816000047 + ], + [ + 105.688110352000081, + 14.099487305000025 + ], + [ + 105.691101074000073, + 14.098083496000072 + ], + [ + 105.694885254000042, + 14.096313477000024 + ], + [ + 105.697509766000053, + 14.094909668000071 + ], + [ + 105.699707031000059, + 14.092712402000075 + ], + [ + 105.70147705100004, + 14.088500977000024 + ], + [ + 105.703918457000043, + 14.086914062000062 + ], + [ + 105.706726074000073, + 14.087524414000029 + ], + [ + 105.709716797000056, + 14.091125488000046 + ], + [ + 105.710693359000061, + 14.096130371000072 + ], + [ + 105.713073730000076, + 14.099304199000073 + ], + [ + 105.715698242000087, + 14.102111816000047 + ], + [ + 105.718322754000042, + 14.106872559000067 + ], + [ + 105.723083496000072, + 14.109130859000061 + ], + [ + 105.726928711000085, + 14.108520508000026 + ], + [ + 105.729492187000062, + 14.105529785000044 + ], + [ + 105.731079102000081, + 14.102478027000075 + ], + [ + 105.733093262000068, + 14.099487305000025 + ], + [ + 105.735107422000056, + 14.096130371000072 + ], + [ + 105.738281250000057, + 14.094482422000056 + ], + [ + 105.742126465000069, + 14.095703125000057 + ], + [ + 105.746887207000043, + 14.094909668000071 + ], + [ + 105.751525879000042, + 14.093688965000069 + ], + [ + 105.754272461000085, + 14.092895508000026 + ], + [ + 105.758911133000083, + 14.091918945000032 + ], + [ + 105.762878418000071, + 14.09069824200003 + ], + [ + 105.766113281000059, + 14.089721680000025 + ], + [ + 105.769287109000061, + 14.089294434000067 + ], + [ + 105.773315430000082, + 14.088684082000043 + ], + [ + 105.776123047000056, + 14.087707520000038 + ], + [ + 105.786682129000042, + 14.082702637000068 + ], + [ + 105.788330078000058, + 14.079711914000029 + ], + [ + 105.787109375000057, + 14.070922852000024 + ], + [ + 105.786499023000033, + 14.068115234000061 + ], + [ + 105.783325195000089, + 14.057678223000039 + ], + [ + 105.784912109000061, + 14.053527832000043 + ], + [ + 105.784729004000042, + 14.047912598000039 + ], + [ + 105.782897949000073, + 14.043090820000032 + ], + [ + 105.791076660000044, + 14.026306152000075 + ], + [ + 105.793518066000047, + 14.022888184000067 + ], + [ + 105.795898437000062, + 14.021118164000029 + ], + [ + 105.798522949000073, + 14.019714355000076 + ], + [ + 105.801330566000047, + 14.018676758000026 + ], + [ + 105.803894043000071, + 14.017517090000069 + ], + [ + 105.806701660000044, + 14.014709473000039 + ], + [ + 105.80889892600004, + 14.011474609000061 + ], + [ + 105.811523437000062, + 14.009094238000046 + ], + [ + 105.814270020000038, + 14.007324219000054 + ], + [ + 105.817871094000054, + 14.005310059000067 + ], + [ + 105.821289062000062, + 14.002929687000062 + ], + [ + 105.824707031000059, + 14.001281738000046 + ], + [ + 105.826904297000056, + 13.998107910000044 + ], + [ + 105.829284668000071, + 13.994689941000047 + ], + [ + 105.831481934000067, + 13.990722656000059 + ], + [ + 105.833679199000073, + 13.987670898000033 + ], + [ + 105.836486816000047, + 13.985473633000026 + ], + [ + 105.842285156000059, + 13.982299805000025 + ], + [ + 105.846130371000072, + 13.978515625000057 + ], + [ + 105.849304199000073, + 13.977478027000075 + ], + [ + 105.852111816000047, + 13.975891113000046 + ], + [ + 105.855102539000086, + 13.973876953000058 + ], + [ + 105.858093262000068, + 13.971130371000072 + ], + [ + 105.861694336000085, + 13.968872070000032 + ], + [ + 105.865478516000053, + 13.967895508000026 + ], + [ + 105.869323730000076, + 13.966308594000054 + ], + [ + 105.872070312000062, + 13.963500977000024 + ], + [ + 105.874511719000054, + 13.961120605000076 + ], + [ + 105.878479004000042, + 13.958129883000026 + ], + [ + 105.881530762000068, + 13.956298828000058 + ], + [ + 105.88507080100004, + 13.954711914000029 + ], + [ + 105.887512207000043, + 13.952697754000042 + ], + [ + 105.889709473000039, + 13.950683594000054 + ], + [ + 105.894470215000069, + 13.947082520000038 + ], + [ + 105.896484375000057, + 13.94171142600004 + ], + [ + 105.900085449000073, + 13.936889648000033 + ], + [ + 105.897521973000039, + 13.935119629000042 + ], + [ + 105.894897461000085, + 13.932678223000039 + ], + [ + 105.890686035000044, + 13.930114746000072 + ], + [ + 105.886474609000061, + 13.927673340000069 + ], + [ + 105.883483887000068, + 13.92608642600004 + ], + [ + 105.880310059000067, + 13.924499512000068 + ], + [ + 105.877319336000085, + 13.923278809000067 + ], + [ + 105.872924805000082, + 13.922302246000072 + ], + [ + 105.869506836000085, + 13.921691895000038 + ], + [ + 105.863098145000038, + 13.921325684000067 + ], + [ + 105.856506348000039, + 13.921691895000038 + ], + [ + 105.853271484000061, + 13.922119141000053 + ], + [ + 105.850280762000068, + 13.92272949200003 + ], + [ + 105.846679687000062, + 13.92272949200003 + ], + [ + 105.842895508000083, + 13.922485352000024 + ], + [ + 105.838500977000081, + 13.922912598000039 + ], + [ + 105.834716797000056, + 13.923095703000058 + ], + [ + 105.830078125000057, + 13.923278809000067 + ], + [ + 105.826110840000069, + 13.922912598000039 + ], + [ + 105.821105957000043, + 13.922485352000024 + ], + [ + 105.815490723000039, + 13.922485352000024 + ], + [ + 105.809082031000059, + 13.922485352000024 + ], + [ + 105.803527832000043, + 13.92272949200003 + ], + [ + 105.798889160000044, + 13.92272949200003 + ], + [ + 105.794311523000033, + 13.923095703000058 + ], + [ + 105.789672852000081, + 13.922912598000039 + ], + [ + 105.78350830100004, + 13.922119141000053 + ], + [ + 105.778320312000062, + 13.921875 + ], + [ + 105.774719238000046, + 13.921875 + ], + [ + 105.771728516000053, + 13.921691895000038 + ], + [ + 105.767700195000089, + 13.922119141000053 + ], + [ + 105.763671875000057, + 13.922912598000039 + ], + [ + 105.758911133000083, + 13.923095703000058 + ], + [ + 105.755493164000086, + 13.922912598000039 + ], + [ + 105.752075195000089, + 13.92272949200003 + ], + [ + 105.748107910000044, + 13.922119141000053 + ], + [ + 105.744079590000069, + 13.921325684000067 + ], + [ + 105.740905762000068, + 13.921081543000071 + ], + [ + 105.736877441000047, + 13.920898437000062 + ], + [ + 105.732299805000082, + 13.920471191000047 + ], + [ + 105.728698730000076, + 13.920288086000028 + ], + [ + 105.723876953000058, + 13.919921875000057 + ], + [ + 105.720275879000042, + 13.918884277000075 + ], + [ + 105.716308594000054, + 13.917724609000061 + ], + [ + 105.712280273000033, + 13.917114258000026 + ], + [ + 105.709716797000056, + 13.915283203000058 + ], + [ + 105.707092285000044, + 13.912292480000076 + ], + [ + 105.704528809000067, + 13.910522461000028 + ], + [ + 105.70147705100004, + 13.908691406000059 + ], + [ + 105.700683594000054, + 13.904296875000057 + ], + [ + 105.702087402000075, + 13.900085449000073 + ], + [ + 105.704711914000086, + 13.897888184000067 + ], + [ + 105.704284668000071, + 13.893920898000033 + ], + [ + 105.703674316000047, + 13.889892578000058 + ], + [ + 105.706298828000058, + 13.888671875000057 + ], + [ + 105.706909180000082, + 13.885681152000075 + ], + [ + 105.709472656000059, + 13.884094238000046 + ], + [ + 105.713317871000072, + 13.883728027000075 + ], + [ + 105.714904785000044, + 13.880310059000067 + ], + [ + 105.714294434000067, + 13.877075195000032 + ], + [ + 105.714294434000067, + 13.872924805000025 + ], + [ + 105.713317871000072, + 13.869689941000047 + ], + [ + 105.711486816000047, + 13.867309570000032 + ], + [ + 105.707092285000044, + 13.867126465000069 + ], + [ + 105.703491211000085, + 13.865722656000059 + ], + [ + 105.700073242000087, + 13.865295410000044 + ], + [ + 105.697326660000044, + 13.862487793000071 + ], + [ + 105.695129395000038, + 13.864318848000039 + ], + [ + 105.69171142600004, + 13.866516113000046 + ], + [ + 105.687072754000042, + 13.86608886700003 + ], + [ + 105.683715820000089, + 13.863891602000024 + ], + [ + 105.680297852000081, + 13.863281250000057 + ], + [ + 105.677917480000076, + 13.865295410000044 + ], + [ + 105.675720215000069, + 13.867919922000056 + ], + [ + 105.674316406000059, + 13.871093750000057 + ], + [ + 105.670104980000076, + 13.872680664000029 + ], + [ + 105.665527344000054, + 13.874694824000073 + ], + [ + 105.661682129000042, + 13.872680664000029 + ], + [ + 105.657470703000058, + 13.872070312000062 + ], + [ + 105.653686523000033, + 13.869506836000028 + ], + [ + 105.649719238000046, + 13.868713379000042 + ], + [ + 105.646484375000057, + 13.869873047000056 + ], + [ + 105.641723633000083, + 13.869079590000069 + ], + [ + 105.636291504000042, + 13.868530273000033 + ], + [ + 105.632507324000073, + 13.86608886700003 + ], + [ + 105.629272461000085, + 13.864501953000058 + ], + [ + 105.627685547000056, + 13.861083984000061 + ], + [ + 105.627075195000089, + 13.85772705100004 + ], + [ + 105.623291016000053, + 13.856872559000067 + ], + [ + 105.619323730000076, + 13.85827636700003 + ], + [ + 105.61749267600004, + 13.861694336000028 + ], + [ + 105.613281250000057, + 13.864074707000043 + ], + [ + 105.611328125000057, + 13.867126465000069 + ], + [ + 105.608886719000054, + 13.869873047000056 + ], + [ + 105.605102539000086, + 13.871093750000057 + ], + [ + 105.603515625000057, + 13.874694824000073 + ], + [ + 105.601501465000069, + 13.878479004000042 + ], + [ + 105.598510742000087, + 13.880493164000029 + ], + [ + 105.594482422000056, + 13.881530762000068 + ], + [ + 105.590881348000039, + 13.883728027000075 + ], + [ + 105.587890625000057, + 13.883483887000068 + ], + [ + 105.584716797000056, + 13.886108398000033 + ], + [ + 105.579711914000086, + 13.886901855000076 + ], + [ + 105.576721191000047, + 13.884704590000069 + ], + [ + 105.574096680000082, + 13.882080078000058 + ], + [ + 105.570495605000076, + 13.879699707000043 + ], + [ + 105.567871094000054, + 13.877929687000062 + ], + [ + 105.565917969000054, + 13.87530517600004 + ], + [ + 105.563293457000043, + 13.872680664000029 + ], + [ + 105.558288574000073, + 13.871520996000072 + ], + [ + 105.555114746000072, + 13.867675781000059 + ], + [ + 105.552673340000069, + 13.864929199000073 + ], + [ + 105.548706055000082, + 13.865478516000053 + ], + [ + 105.545288086000085, + 13.864074707000043 + ], + [ + 105.542480469000054, + 13.861877441000047 + ], + [ + 105.538696289000086, + 13.860107422000056 + ], + [ + 105.535705566000047, + 13.856872559000067 + ], + [ + 105.531494141000053, + 13.854675293000071 + ], + [ + 105.528076172000056, + 13.851074219000054 + ], + [ + 105.526916504000042, + 13.846496582000043 + ], + [ + 105.526306152000075, + 13.843688965000069 + ], + [ + 105.524291992000087, + 13.840515137000068 + ], + [ + 105.521728516000053, + 13.836914062000062 + ], + [ + 105.521911621000072, + 13.833679199000073 + ], + [ + 105.520507812000062, + 13.829895020000038 + ], + [ + 105.520507812000062, + 13.825500488000046 + ], + [ + 105.521118164000086, + 13.822326660000044 + ], + [ + 105.521728516000053, + 13.819519043000071 + ], + [ + 105.524902344000054, + 13.816528320000032 + ], + [ + 105.525878906000059, + 13.812072754000042 + ], + [ + 105.528076172000056, + 13.806274414000029 + ], + [ + 105.525085449000073, + 13.802307129000042 + ], + [ + 105.52569580100004, + 13.797912598000039 + ], + [ + 105.528686523000033, + 13.793884277000075 + ], + [ + 105.528930664000086, + 13.790893555000025 + ], + [ + 105.527893066000047, + 13.786682129000042 + ], + [ + 105.524719238000046, + 13.782287598000039 + ], + [ + 105.522521973000039, + 13.778930664000029 + ], + [ + 105.522705078000058, + 13.775878906000059 + ], + [ + 105.524475098000039, + 13.772888184000067 + ], + [ + 105.524291992000087, + 13.768493652000075 + ], + [ + 105.524902344000054, + 13.765075684000067 + ], + [ + 105.527526855000076, + 13.763122559000067 + ], + [ + 105.531127930000082, + 13.76007080100004 + ], + [ + 105.531677246000072, + 13.756896973000039 + ], + [ + 105.532287598000039, + 13.753479004000042 + ], + [ + 105.533691406000059, + 13.749084473000039 + ], + [ + 105.536682129000042, + 13.746887207000043 + ], + [ + 105.540527344000054, + 13.745117187000062 + ], + [ + 105.544494629000042, + 13.74249267600004 + ], + [ + 105.548889160000044, + 13.739318848000039 + ], + [ + 105.551696777000075, + 13.728088379000042 + ], + [ + 105.552673340000069, + 13.725097656000059 + ], + [ + 105.564880371000072, + 13.708496094000054 + ], + [ + 105.570495605000076, + 13.689880371000072 + ], + [ + 105.570312500000057, + 13.679504395000038 + ], + [ + 105.573486328000058, + 13.671691895000038 + ], + [ + 105.575317383000083, + 13.669311523000033 + ], + [ + 105.575500488000046, + 13.660705566000047 + ], + [ + 105.576904297000056, + 13.652709961000028 + ], + [ + 105.573486328000058, + 13.646911621000072 + ], + [ + 105.572875977000081, + 13.641906738000046 + ], + [ + 105.571289062000062, + 13.639099121000072 + ], + [ + 105.570495605000076, + 13.635925293000071 + ], + [ + 105.570922852000081, + 13.632507324000073 + ], + [ + 105.572875977000081, + 13.625488281000059 + ], + [ + 105.573120117000087, + 13.622314453000058 + ], + [ + 105.573120117000087, + 13.61749267600004 + ], + [ + 105.572875977000081, + 13.611877441000047 + ], + [ + 105.572509766000053, + 13.60632324200003 + ], + [ + 105.572326660000044, + 13.600524902000075 + ], + [ + 105.571899414000086, + 13.595520020000038 + ], + [ + 105.571105957000043, + 13.59210205100004 + ], + [ + 105.570312500000057, + 13.589294434000067 + ], + [ + 105.569274902000075, + 13.584472656000059 + ], + [ + 105.568725586000085, + 13.580322266000053 + ], + [ + 105.568298340000069, + 13.57647705100004 + ], + [ + 105.567687988000046, + 13.571899414000029 + ], + [ + 105.567077637000068, + 13.567871094000054 + ], + [ + 105.56671142600004, + 13.564514160000044 + ], + [ + 105.566284180000082, + 13.561279297000056 + ], + [ + 105.566284180000082, + 13.555908203000058 + ], + [ + 105.565307617000087, + 13.551696777000075 + ], + [ + 105.562927246000072, + 13.543884277000075 + ], + [ + 105.562683105000076, + 13.540710449000073 + ], + [ + 105.564880371000072, + 13.52569580100004 + ], + [ + 105.565307617000087, + 13.522705078000058 + ], + [ + 105.565490723000039, + 13.519470215000069 + ], + [ + 105.565673828000058, + 13.514282227000024 + ], + [ + 105.565307617000087, + 13.508728027000075 + ], + [ + 105.565307617000087, + 13.505126953000058 + ], + [ + 105.565490723000039, + 13.501098633000026 + ], + [ + 105.566101074000073, + 13.497314453000058 + ], + [ + 105.566284180000082, + 13.49249267600004 + ], + [ + 105.565490723000039, + 13.488098145000038 + ], + [ + 105.563293457000043, + 13.485107422000056 + ], + [ + 105.560485840000069, + 13.482482910000044 + ], + [ + 105.558105469000054, + 13.480895996000072 + ], + [ + 105.554870605000076, + 13.478088379000042 + ], + [ + 105.552307129000042, + 13.473876953000058 + ], + [ + 105.550903320000089, + 13.470886230000076 + ], + [ + 105.549316406000059, + 13.468505859000061 + ], + [ + 105.546508789000086, + 13.46569824200003 + ], + [ + 105.543518066000047, + 13.462280273000033 + ], + [ + 105.542907715000069, + 13.45788574200003 + ], + [ + 105.540100098000039, + 13.452270508000026 + ], + [ + 105.537475586000085, + 13.44812011700003 + ], + [ + 105.533691406000059, + 13.446105957000043 + ], + [ + 105.531494141000053, + 13.441894531000059 + ], + [ + 105.529296875000057, + 13.438720703000058 + ], + [ + 105.526916504000042, + 13.436096191000047 + ], + [ + 105.524291992000087, + 13.43389892600004 + ], + [ + 105.520324707000043, + 13.432678223000039 + ], + [ + 105.517272949000073, + 13.431884766000053 + ], + [ + 105.512878418000071, + 13.430725098000039 + ], + [ + 105.509094238000046, + 13.429504395000038 + ], + [ + 105.505920410000044, + 13.428710937000062 + ], + [ + 105.502075195000089, + 13.427917480000076 + ], + [ + 105.497924805000082, + 13.426879883000026 + ], + [ + 105.493896484000061, + 13.42608642600004 + ], + [ + 105.489685059000067, + 13.42468261700003 + ], + [ + 105.484130859000061, + 13.422912598000039 + ], + [ + 105.479675293000071, + 13.421325684000067 + ], + [ + 105.47491455100004, + 13.418518066000047 + ], + [ + 105.471130371000072, + 13.416076660000044 + ], + [ + 105.468872070000089, + 13.414123535000044 + ], + [ + 105.464294434000067, + 13.411071777000075 + ], + [ + 105.460510254000042, + 13.408691406000059 + ], + [ + 105.457702637000068, + 13.406921387000068 + ], + [ + 105.454101562000062, + 13.405090332000043 + ], + [ + 105.450927734000061, + 13.403076172000056 + ], + [ + 105.447692871000072, + 13.401489258000026 + ], + [ + 105.443908691000047, + 13.399902344000054 + ], + [ + 105.440124512000068, + 13.398315430000025 + ], + [ + 105.435913086000085, + 13.396484375000057 + ], + [ + 105.432495117000087, + 13.395324707000043 + ], + [ + 105.428894043000071, + 13.394104004000042 + ], + [ + 105.425109863000046, + 13.393127441000047 + ], + [ + 105.421691895000038, + 13.392089844000054 + ], + [ + 105.418090820000089, + 13.390502930000025 + ], + [ + 105.414672852000081, + 13.388671875000057 + ], + [ + 105.411071777000075, + 13.387512207000043 + ], + [ + 105.406311035000044, + 13.386474609000061 + ], + [ + 105.402893066000047, + 13.385498047000056 + ], + [ + 105.398925781000059, + 13.384277344000054 + ], + [ + 105.394897461000085, + 13.382324219000054 + ], + [ + 105.391906738000046, + 13.380493164000029 + ], + [ + 105.387878418000071, + 13.378295898000033 + ], + [ + 105.383911133000083, + 13.376281738000046 + ], + [ + 105.379882812000062, + 13.374694824000073 + ], + [ + 105.376708984000061, + 13.372924805000025 + ], + [ + 105.372680664000086, + 13.370910645000038 + ], + [ + 105.368286133000083, + 13.368713379000042 + ], + [ + 105.365295410000044, + 13.367126465000069 + ], + [ + 105.361694336000085, + 13.365295410000044 + ], + [ + 105.358520508000083, + 13.363281250000057 + ], + [ + 105.355895996000072, + 13.361328125000057 + ], + [ + 105.353088379000042, + 13.358520508000026 + ], + [ + 105.351318359000061, + 13.355102539000029 + ], + [ + 105.350097656000059, + 13.352294922000056 + ], + [ + 105.348083496000072, + 13.34851074200003 + ], + [ + 105.344299316000047, + 13.343872070000032 + ], + [ + 105.340698242000087, + 13.341125488000046 + ], + [ + 105.338317871000072, + 13.338684082000043 + ], + [ + 105.336486816000047, + 13.336486816000047 + ], + [ + 105.33428955100004, + 13.333679199000073 + ], + [ + 105.330688477000081, + 13.330078125000057 + ], + [ + 105.327087402000075, + 13.32647705100004 + ], + [ + 105.323303223000039, + 13.322875977000024 + ], + [ + 105.319885254000042, + 13.319519043000071 + ], + [ + 105.317321777000075, + 13.316101074000073 + ], + [ + 105.314514160000044, + 13.312316895000038 + ], + [ + 105.311889648000033, + 13.309326172000056 + ], + [ + 105.309509277000075, + 13.306884766000053 + ], + [ + 105.306884766000053, + 13.304321289000029 + ], + [ + 105.303527832000043, + 13.301330566000047 + ], + [ + 105.300292969000054, + 13.298095703000058 + ], + [ + 105.297119141000053, + 13.294921875000057 + ], + [ + 105.294128418000071, + 13.291503906000059 + ], + [ + 105.291687012000068, + 13.288696289000029 + ], + [ + 105.289306641000053, + 13.285888672000056 + ], + [ + 105.287109375000057, + 13.283325195000032 + ], + [ + 105.285095215000069, + 13.280883789000029 + ], + [ + 105.282714844000054, + 13.278076172000056 + ], + [ + 105.280517578000058, + 13.275878906000059 + ], + [ + 105.277526855000076, + 13.273498535000044 + ], + [ + 105.273315430000082, + 13.270507812000062 + ], + [ + 105.270080566000047, + 13.268920898000033 + ], + [ + 105.266723633000083, + 13.267517090000069 + ], + [ + 105.262512207000043, + 13.26593017600004 + ], + [ + 105.258911133000083, + 13.264709473000039 + ], + [ + 105.254882812000062, + 13.263305664000029 + ], + [ + 105.252075195000089, + 13.262084961000028 + ], + [ + 105.247924805000082, + 13.260681152000075 + ], + [ + 105.244079590000069, + 13.260314941000047 + ], + [ + 105.239929199000073, + 13.258483887000068 + ], + [ + 105.235900879000042, + 13.25671386700003 + ], + [ + 105.232482910000044, + 13.254699707000043 + ], + [ + 105.230102539000086, + 13.252929687000062 + ], + [ + 105.226928711000085, + 13.251525879000042 + ], + [ + 105.223876953000058, + 13.249511719000054 + ], + [ + 105.220886230000076, + 13.247680664000029 + ], + [ + 105.217529297000056, + 13.245727539000029 + ], + [ + 105.213684082000043, + 13.243713379000042 + ], + [ + 105.209716797000056, + 13.241516113000046 + ], + [ + 105.207092285000044, + 13.239929199000073 + ], + [ + 105.203674316000047, + 13.237670898000033 + ], + [ + 105.200683594000054, + 13.235473633000026 + ], + [ + 105.198120117000087, + 13.233703613000046 + ], + [ + 105.195312500000057, + 13.231872559000067 + ], + [ + 105.192077637000068, + 13.229919434000067 + ], + [ + 105.189086914000086, + 13.227111816000047 + ], + [ + 105.187927246000072, + 13.223693848000039 + ], + [ + 105.184509277000075, + 13.221496582000043 + ], + [ + 105.182312012000068, + 13.218688965000069 + ], + [ + 105.180297852000081, + 13.21569824200003 + ], + [ + 105.177917480000076, + 13.211730957000043 + ], + [ + 105.175903320000089, + 13.207702637000068 + ], + [ + 105.174682617000087, + 13.204711914000029 + ], + [ + 105.173095703000058, + 13.200500488000046 + ], + [ + 105.171691895000038, + 13.197082520000038 + ], + [ + 105.169921875000057, + 13.193298340000069 + ], + [ + 105.167724609000061, + 13.188903809000067 + ], + [ + 105.164489746000072, + 13.184692383000026 + ], + [ + 105.161499023000033, + 13.180725098000039 + ], + [ + 105.158691406000059, + 13.178283691000047 + ], + [ + 105.155883789000086, + 13.174926758000026 + ], + [ + 105.152526855000076, + 13.171875 + ], + [ + 105.150329590000069, + 13.170104980000076 + ], + [ + 105.148071289000086, + 13.168090820000032 + ], + [ + 105.145874023000033, + 13.16632080100004 + ], + [ + 105.143127441000047, + 13.164123535000044 + ], + [ + 105.139892578000058, + 13.161682129000042 + ], + [ + 105.137329102000081, + 13.159729004000042 + ], + [ + 105.134521484000061, + 13.157897949000073 + ], + [ + 105.130310059000067, + 13.154724121000072 + ], + [ + 105.126525879000042, + 13.151672363000046 + ], + [ + 105.123107910000044, + 13.149475098000039 + ], + [ + 105.118713379000042, + 13.146728516000053 + ], + [ + 105.115112305000082, + 13.144287109000061 + ], + [ + 105.112304687000062, + 13.142700195000032 + ], + [ + 105.109497070000089, + 13.141296387000068 + ], + [ + 105.105102539000086, + 13.138916016000053 + ], + [ + 105.101928711000085, + 13.137084961000028 + ], + [ + 105.097900391000053, + 13.13507080100004 + ], + [ + 105.094726562000062, + 13.133300781000059 + ], + [ + 105.091918945000089, + 13.131896973000039 + ], + [ + 105.087524414000086, + 13.129699707000043 + ], + [ + 105.084472656000059, + 13.128479004000042 + ], + [ + 105.081726074000073, + 13.127075195000032 + ], + [ + 105.076721191000047, + 13.124694824000073 + ], + [ + 105.072509766000053, + 13.122314453000058 + ], + [ + 105.070312500000057, + 13.120483398000033 + ], + [ + 105.067077637000068, + 13.119323730000076 + ], + [ + 105.063110352000081, + 13.116699219000054 + ], + [ + 105.059509277000075, + 13.114685059000067 + ], + [ + 105.056274414000086, + 13.112304687000062 + ], + [ + 105.054077148000033, + 13.110473633000026 + ], + [ + 105.049682617000087, + 13.106872559000067 + ], + [ + 105.046081543000071, + 13.104125977000024 + ], + [ + 105.04132080100004, + 13.101074219000054 + ], + [ + 105.036682129000042, + 13.097717285000044 + ], + [ + 105.033874512000068, + 13.095520020000038 + ], + [ + 105.031127930000082, + 13.093078613000046 + ], + [ + 105.028076172000056, + 13.090515137000068 + ], + [ + 105.024902344000054, + 13.088684082000043 + ], + [ + 105.021911621000072, + 13.086303711000028 + ], + [ + 105.017700195000089, + 13.083129883000026 + ], + [ + 105.014526367000087, + 13.080871582000043 + ], + [ + 105.011718750000057, + 13.078674316000047 + ], + [ + 105.00811767600004, + 13.076110840000069 + ], + [ + 105.005126953000058, + 13.073486328000058 + ], + [ + 105.001708984000061, + 13.071289062000062 + ], + [ + 104.998474121000072, + 13.069702148000033 + ], + [ + 104.995483398000033, + 13.067871094000054 + ], + [ + 104.992126465000069, + 13.06530761700003 + ], + [ + 104.988891602000081, + 13.063293457000043 + ], + [ + 104.985290527000075, + 13.060913086000028 + ], + [ + 104.977111816000047, + 13.056274414000029 + ], + [ + 104.974304199000073, + 13.055480957000043 + ], + [ + 104.966308594000054, + 13.055480957000043 + ], + [ + 104.961120605000076, + 13.056518555000025 + ], + [ + 104.953918457000043, + 13.058105469000054 + ], + [ + 104.94952392600004, + 13.061279297000056 + ], + [ + 104.945678711000085, + 13.064086914000029 + ], + [ + 104.940307617000087, + 13.069274902000075 + ], + [ + 104.933715820000089, + 13.076293945000032 + ], + [ + 104.927490234000061, + 13.084899902000075 + ], + [ + 104.921325684000067, + 13.092285156000059 + ], + [ + 104.919494629000042, + 13.096679687000062 + ], + [ + 104.916076660000044, + 13.099670410000044 + ], + [ + 104.912292480000076, + 13.103698730000076 + ], + [ + 104.910278320000089, + 13.107116699000073 + ], + [ + 104.907470703000058, + 13.108520508000026 + ], + [ + 104.906921387000068, + 13.113525391000053 + ], + [ + 104.905090332000043, + 13.117309570000032 + ], + [ + 104.904296875000057, + 13.122070312000062 + ], + [ + 104.901489258000083, + 13.125488281000059 + ], + [ + 104.899108887000068, + 13.127929687000062 + ], + [ + 104.896728516000053, + 13.130310059000067 + ], + [ + 104.894897461000085, + 13.133300781000059 + ], + [ + 104.89288330100004, + 13.135681152000075 + ], + [ + 104.890686035000044, + 13.137878418000071 + ], + [ + 104.887878418000071, + 13.141296387000068 + ], + [ + 104.887512207000043, + 13.148315430000025 + ], + [ + 104.888488770000038, + 13.152526855000076 + ], + [ + 104.888671875000057, + 13.157287598000039 + ], + [ + 104.886291504000042, + 13.160522461000028 + ], + [ + 104.882690430000082, + 13.162902832000043 + ], + [ + 104.880310059000067, + 13.165283203000058 + ], + [ + 104.877502441000047, + 13.168884277000075 + ], + [ + 104.876708984000061, + 13.173278809000067 + ], + [ + 104.875915527000075, + 13.178710937000062 + ], + [ + 104.876525879000042, + 13.18249511700003 + ], + [ + 104.876281738000046, + 13.186096191000047 + ], + [ + 104.875122070000089, + 13.190124512000068 + ], + [ + 104.873718262000068, + 13.194702148000033 + ], + [ + 104.874511719000054, + 13.19812011700003 + ], + [ + 104.875488281000059, + 13.201721191000047 + ], + [ + 104.875488281000059, + 13.205322266000053 + ], + [ + 104.876525879000042, + 13.209472656000059 + ], + [ + 104.875122070000089, + 13.213500977000024 + ], + [ + 104.87530517600004, + 13.218872070000032 + ], + [ + 104.876708984000061, + 13.221679687000062 + ], + [ + 104.879272461000085, + 13.223693848000039 + ], + [ + 104.881530762000068, + 13.225708008000026 + ], + [ + 104.883300781000059, + 13.228698730000076 + ], + [ + 104.882080078000058, + 13.23272705100004 + ], + [ + 104.881713867000087, + 13.236877441000047 + ], + [ + 104.883483887000068, + 13.240478516000053 + ], + [ + 104.886718750000057, + 13.243103027000075 + ], + [ + 104.890075684000067, + 13.246276855000076 + ], + [ + 104.891906738000046, + 13.249694824000073 + ], + [ + 104.893676758000083, + 13.254089355000076 + ], + [ + 104.894897461000085, + 13.259094238000046 + ], + [ + 104.896118164000086, + 13.263305664000029 + ], + [ + 104.897277832000043, + 13.266906738000046 + ], + [ + 104.898315430000082, + 13.269897461000028 + ], + [ + 104.899719238000046, + 13.273681641000053 + ], + [ + 104.901123047000056, + 13.277526855000076 + ], + [ + 104.901916504000042, + 13.280700684000067 + ], + [ + 104.904296875000057, + 13.284912109000061 + ], + [ + 104.902099609000061, + 13.288513184000067 + ], + [ + 104.901306152000075, + 13.291503906000059 + ], + [ + 104.900085449000073, + 13.294311523000033 + ], + [ + 104.898498535000044, + 13.298278809000067 + ], + [ + 104.896728516000053, + 13.301879883000026 + ], + [ + 104.894897461000085, + 13.305297852000024 + ], + [ + 104.892700195000089, + 13.308105469000054 + ], + [ + 104.889526367000087, + 13.309509277000075 + ], + [ + 104.886291504000042, + 13.310119629000042 + ], + [ + 104.880920410000044, + 13.309509277000075 + ], + [ + 104.876098633000083, + 13.309082031000059 + ], + [ + 104.871887207000043, + 13.308471680000025 + ], + [ + 104.867309570000089, + 13.307922363000046 + ], + [ + 104.862670898000033, + 13.307312012000068 + ], + [ + 104.858703613000046, + 13.306884766000053 + ], + [ + 104.855102539000086, + 13.306518555000025 + ], + [ + 104.851928711000085, + 13.306518555000025 + ], + [ + 104.847900391000053, + 13.306701660000044 + ], + [ + 104.839111328000058, + 13.30889892600004 + ], + [ + 104.835327148000033, + 13.309326172000056 + ], + [ + 104.829895020000038, + 13.308471680000025 + ], + [ + 104.826293945000089, + 13.308105469000054 + ], + [ + 104.823120117000087, + 13.307922363000046 + ], + [ + 104.819885254000042, + 13.307312012000068 + ], + [ + 104.815307617000087, + 13.306884766000053 + ], + [ + 104.809509277000075, + 13.306274414000029 + ], + [ + 104.803894043000071, + 13.305480957000043 + ], + [ + 104.799316406000059, + 13.305114746000072 + ], + [ + 104.794311523000033, + 13.305114746000072 + ], + [ + 104.789306641000053, + 13.304077148000033 + ], + [ + 104.786071777000075, + 13.303894043000071 + ], + [ + 104.782287598000039, + 13.303100586000028 + ], + [ + 104.776306152000075, + 13.302307129000042 + ], + [ + 104.772277832000043, + 13.304504395000038 + ], + [ + 104.769104004000042, + 13.306274414000029 + ], + [ + 104.767272949000073, + 13.309692383000026 + ], + [ + 104.763916016000053, + 13.312316895000038 + ], + [ + 104.759887695000089, + 13.313903809000067 + ], + [ + 104.755310059000067, + 13.313110352000024 + ], + [ + 104.751892090000069, + 13.311279297000056 + ], + [ + 104.748718262000068, + 13.311279297000056 + ], + [ + 104.745910645000038, + 13.312683105000076 + ], + [ + 104.743103027000075, + 13.313476562000062 + ], + [ + 104.739318848000039, + 13.312072754000042 + ], + [ + 104.734924316000047, + 13.311096191000047 + ], + [ + 104.731323242000087, + 13.310119629000042 + ], + [ + 104.728515625000057, + 13.307312012000068 + ], + [ + 104.725708008000083, + 13.304870605000076 + ], + [ + 104.721679687000062, + 13.305114746000072 + ], + [ + 104.718505859000061, + 13.305908203000058 + ], + [ + 104.715515137000068, + 13.306884766000053 + ], + [ + 104.711914062000062, + 13.306701660000044 + ], + [ + 104.708679199000073, + 13.305725098000039 + ], + [ + 104.705322266000053, + 13.303100586000028 + ], + [ + 104.702880859000061, + 13.299316406000059 + ], + [ + 104.700683594000054, + 13.297485352000024 + ], + [ + 104.698120117000087, + 13.295471191000047 + ], + [ + 104.692321777000075, + 13.291687012000068 + ], + [ + 104.688293457000043, + 13.29132080100004 + ], + [ + 104.685302734000061, + 13.290100098000039 + ], + [ + 104.681091309000067, + 13.288085937000062 + ], + [ + 104.677307129000042, + 13.285705566000047 + ], + [ + 104.673278809000067, + 13.28210449200003 + ], + [ + 104.669494629000042, + 13.280517578000058 + ], + [ + 104.665283203000058, + 13.278503418000071 + ], + [ + 104.662292480000076, + 13.277282715000069 + ], + [ + 104.659484863000046, + 13.276306152000075 + ], + [ + 104.654296875000057, + 13.274108887000068 + ], + [ + 104.650329590000069, + 13.272521973000039 + ], + [ + 104.646118164000086, + 13.271118164000029 + ], + [ + 104.640075684000067, + 13.269104004000042 + ], + [ + 104.636108398000033, + 13.26788330100004 + ], + [ + 104.632690430000082, + 13.266723633000026 + ], + [ + 104.626281738000046, + 13.264709473000039 + ], + [ + 104.620483398000033, + 13.262512207000043 + ], + [ + 104.615478516000053, + 13.260925293000071 + ], + [ + 104.609313965000069, + 13.259277344000054 + ], + [ + 104.604309082000043, + 13.258300781000059 + ], + [ + 104.600280762000068, + 13.257080078000058 + ], + [ + 104.594909668000071, + 13.255676270000038 + ], + [ + 104.588928223000039, + 13.254699707000043 + ], + [ + 104.582092285000044, + 13.253479004000042 + ], + [ + 104.573303223000039, + 13.252075195000032 + ], + [ + 104.569091797000056, + 13.251892090000069 + ], + [ + 104.565490723000039, + 13.253112793000071 + ], + [ + 104.565917969000054, + 13.257080078000058 + ], + [ + 104.567871094000054, + 13.262695312000062 + ], + [ + 104.569519043000071, + 13.266296387000068 + ], + [ + 104.570922852000081, + 13.270324707000043 + ], + [ + 104.571716309000067, + 13.273681641000053 + ], + [ + 104.570678711000085, + 13.278930664000029 + ], + [ + 104.569091797000056, + 13.283325195000032 + ], + [ + 104.567871094000054, + 13.286071777000075 + ], + [ + 104.56671142600004, + 13.289672852000024 + ], + [ + 104.565673828000058, + 13.292724609000061 + ], + [ + 104.564880371000072, + 13.296691895000038 + ], + [ + 104.565124512000068, + 13.300476074000073 + ], + [ + 104.566101074000073, + 13.304870605000076 + ], + [ + 104.567077637000068, + 13.308105469000054 + ], + [ + 104.569091797000056, + 13.312072754000042 + ], + [ + 104.571472168000071, + 13.316528320000032 + ], + [ + 104.572326660000044, + 13.319885254000042 + ], + [ + 104.571472168000071, + 13.323303223000039 + ], + [ + 104.569274902000075, + 13.326721191000047 + ], + [ + 104.567871094000054, + 13.329895020000038 + ], + [ + 104.567871094000054, + 13.333923340000069 + ], + [ + 104.567871094000054, + 13.337707520000038 + ], + [ + 104.568115234000061, + 13.341125488000046 + ], + [ + 104.567504883000083, + 13.344482422000056 + ], + [ + 104.567077637000068, + 13.347900391000053 + ], + [ + 104.566894531000059, + 13.352478027000075 + ], + [ + 104.566894531000059, + 13.35772705100004 + ], + [ + 104.567077637000068, + 13.361694336000028 + ], + [ + 104.568115234000061, + 13.365478516000053 + ], + [ + 104.569519043000071, + 13.369506836000028 + ], + [ + 104.570495605000076, + 13.373107910000044 + ], + [ + 104.571472168000071, + 13.376892090000069 + ], + [ + 104.572692871000072, + 13.380310059000067 + ], + [ + 104.57452392600004, + 13.384704590000069 + ], + [ + 104.577087402000075, + 13.387512207000043 + ], + [ + 104.579284668000071, + 13.389282227000024 + ], + [ + 104.582092285000044, + 13.392517090000069 + ], + [ + 104.584472656000059, + 13.394714355000076 + ], + [ + 104.586914062000062, + 13.397277832000043 + ], + [ + 104.588500977000081, + 13.400329590000069 + ], + [ + 104.589904785000044, + 13.403076172000056 + ], + [ + 104.591308594000054, + 13.407714844000054 + ], + [ + 104.592712402000075, + 13.410888672000056 + ], + [ + 104.595092773000033, + 13.414123535000044 + ], + [ + 104.597900391000053, + 13.417114258000026 + ], + [ + 104.600891113000046, + 13.419921875000057 + ], + [ + 104.603698730000076, + 13.421691895000038 + ], + [ + 104.607116699000073, + 13.423889160000044 + ], + [ + 104.611511230000076, + 13.426879883000026 + ], + [ + 104.615905762000068, + 13.430114746000072 + ], + [ + 104.619506836000085, + 13.432678223000039 + ], + [ + 104.622070312000062, + 13.434509277000075 + ], + [ + 104.624877930000082, + 13.436889648000033 + ], + [ + 104.627929687000062, + 13.438903809000067 + ], + [ + 104.631713867000087, + 13.440917969000054 + ], + [ + 104.634277344000054, + 13.443481445000032 + ], + [ + 104.63507080100004, + 13.446289062000062 + ], + [ + 104.635925293000071, + 13.449096680000025 + ], + [ + 104.637329102000081, + 13.451904297000056 + ], + [ + 104.639282227000081, + 13.454895020000038 + ], + [ + 104.64093017600004, + 13.457275391000053 + ], + [ + 104.642700195000089, + 13.459472656000059 + ], + [ + 104.645690918000071, + 13.461914062000062 + ], + [ + 104.647705078000058, + 13.464721680000025 + ], + [ + 104.649719238000046, + 13.46710205100004 + ], + [ + 104.649902344000054, + 13.470092773000033 + ], + [ + 104.649719238000046, + 13.47351074200003 + ], + [ + 104.650878906000059, + 13.478881836000028 + ], + [ + 104.65069580100004, + 13.48272705100004 + ], + [ + 104.650085449000073, + 13.485717773000033 + ], + [ + 104.649475098000039, + 13.488525391000053 + ], + [ + 104.648925781000059, + 13.491699219000054 + ], + [ + 104.650085449000073, + 13.494873047000056 + ], + [ + 104.651672363000046, + 13.497680664000029 + ], + [ + 104.653930664000086, + 13.500488281000059 + ], + [ + 104.657897949000073, + 13.503906250000057 + ], + [ + 104.661682129000042, + 13.506103516000053 + ], + [ + 104.664672852000081, + 13.509277344000054 + ], + [ + 104.667480469000054, + 13.513122559000067 + ], + [ + 104.671508789000086, + 13.515502930000025 + ], + [ + 104.673889160000044, + 13.518127441000047 + ], + [ + 104.677124023000033, + 13.520324707000043 + ], + [ + 104.678710937000062, + 13.523315430000025 + ], + [ + 104.680725098000039, + 13.526306152000075 + ], + [ + 104.682922363000046, + 13.528503418000071 + ], + [ + 104.680297852000081, + 13.531127930000025 + ], + [ + 104.677917480000076, + 13.532714844000054 + ], + [ + 104.675292969000054, + 13.534484863000046 + ], + [ + 104.672302246000072, + 13.531677246000072 + ], + [ + 104.66827392600004, + 13.529724121000072 + ], + [ + 104.664916992000087, + 13.527709961000028 + ], + [ + 104.661682129000042, + 13.526123047000056 + ], + [ + 104.65850830100004, + 13.523925781000059 + ], + [ + 104.654907227000081, + 13.521301270000038 + ], + [ + 104.652526855000076, + 13.518676758000026 + ], + [ + 104.650085449000073, + 13.516723633000026 + ], + [ + 104.645080566000047, + 13.516113281000059 + ], + [ + 104.639709473000039, + 13.513671875000057 + ], + [ + 104.635925293000071, + 13.512329102000024 + ], + [ + 104.632080078000058, + 13.511474609000061 + ], + [ + 104.628906250000057, + 13.51007080100004 + ], + [ + 104.626281738000046, + 13.508728027000075 + ], + [ + 104.622924805000082, + 13.506530762000068 + ], + [ + 104.618896484000061, + 13.505493164000029 + ], + [ + 104.615905762000068, + 13.506286621000072 + ], + [ + 104.614074707000043, + 13.510314941000047 + ], + [ + 104.611877441000047, + 13.512512207000043 + ], + [ + 104.607910156000059, + 13.51452636700003 + ], + [ + 104.603515625000057, + 13.517272949000073 + ], + [ + 104.600891113000046, + 13.520690918000071 + ], + [ + 104.598327637000068, + 13.523498535000044 + ], + [ + 104.594726562000062, + 13.524108887000068 + ], + [ + 104.590698242000087, + 13.524108887000068 + ], + [ + 104.587524414000086, + 13.523681641000053 + ], + [ + 104.584472656000059, + 13.523071289000029 + ], + [ + 104.580688477000081, + 13.522705078000058 + ], + [ + 104.57647705100004, + 13.522277832000043 + ], + [ + 104.573120117000087, + 13.522094727000024 + ], + [ + 104.569274902000075, + 13.521911621000072 + ], + [ + 104.565124512000068, + 13.522888184000067 + ], + [ + 104.561706543000071, + 13.524719238000046 + ], + [ + 104.557495117000087, + 13.526306152000075 + ], + [ + 104.552673340000069, + 13.525878906000059 + ], + [ + 104.549926758000083, + 13.527893066000047 + ], + [ + 104.546691895000038, + 13.530273437000062 + ], + [ + 104.54327392600004, + 13.532714844000054 + ], + [ + 104.540283203000058, + 13.535888672000056 + ], + [ + 104.537719727000081, + 13.538696289000029 + ], + [ + 104.534729004000042, + 13.543090820000032 + ], + [ + 104.531677246000072, + 13.544921875000057 + ], + [ + 104.527099609000061, + 13.545288086000028 + ], + [ + 104.523071289000086, + 13.546081543000071 + ], + [ + 104.518493652000075, + 13.546508789000029 + ], + [ + 104.514892578000058, + 13.545288086000028 + ], + [ + 104.509094238000046, + 13.546081543000071 + ], + [ + 104.503479004000042, + 13.548095703000058 + ], + [ + 104.499877930000082, + 13.549072266000053 + ], + [ + 104.497070312000062, + 13.548522949000073 + ], + [ + 104.490905762000068, + 13.550720215000069 + ], + [ + 104.487304687000062, + 13.55108642600004 + ], + [ + 104.483703613000046, + 13.551513672000056 + ], + [ + 104.480102539000086, + 13.551879883000026 + ], + [ + 104.475524902000075, + 13.552673340000069 + ], + [ + 104.471679687000062, + 13.552917480000076 + ], + [ + 104.467285156000059, + 13.552917480000076 + ], + [ + 104.461486816000047, + 13.552917480000076 + ], + [ + 104.456909180000082, + 13.552307129000042 + ], + [ + 104.453308105000076, + 13.553527832000043 + ], + [ + 104.447692871000072, + 13.553894043000071 + ], + [ + 104.441284180000082, + 13.553894043000071 + ], + [ + 104.435729980000076, + 13.553710937000062 + ], + [ + 104.428894043000071, + 13.554077148000033 + ], + [ + 104.423278809000067, + 13.554870605000076 + ], + [ + 104.417724609000061, + 13.555297852000024 + ], + [ + 104.409301758000083, + 13.557678223000039 + ], + [ + 104.407714844000054, + 13.561279297000056 + ], + [ + 104.407897949000073, + 13.564697266000053 + ], + [ + 104.411071777000075, + 13.568115234000061 + ], + [ + 104.409118652000075, + 13.572509766000053 + ], + [ + 104.406494141000053, + 13.57647705100004 + ], + [ + 104.406311035000044, + 13.580322266000053 + ], + [ + 104.405273437000062, + 13.584106445000032 + ], + [ + 104.403503418000071, + 13.588928223000039 + ], + [ + 104.402526855000076, + 13.592529297000056 + ], + [ + 104.402526855000076, + 13.595703125000057 + ], + [ + 104.403503418000071, + 13.598876953000058 + ], + [ + 104.405273437000062, + 13.601501465000069 + ], + [ + 104.406677246000072, + 13.604309082000043 + ], + [ + 104.409118652000075, + 13.606872559000067 + ], + [ + 104.411926270000038, + 13.608093262000068 + ], + [ + 104.416076660000044, + 13.608703613000046 + ], + [ + 104.419921875000057, + 13.610717773000033 + ], + [ + 104.423278809000067, + 13.613098145000038 + ], + [ + 104.425109863000046, + 13.616271973000039 + ], + [ + 104.424499512000068, + 13.619506836000028 + ], + [ + 104.425720215000069, + 13.622680664000029 + ], + [ + 104.42608642600004, + 13.626281738000046 + ], + [ + 104.425292969000054, + 13.629516602000024 + ], + [ + 104.426330566000047, + 13.632324219000054 + ], + [ + 104.428894043000071, + 13.636718750000057 + ], + [ + 104.430908203000058, + 13.640319824000073 + ], + [ + 104.432678223000039, + 13.644470215000069 + ], + [ + 104.434509277000075, + 13.648498535000044 + ], + [ + 104.437316895000038, + 13.651306152000075 + ], + [ + 104.440307617000087, + 13.653930664000029 + ], + [ + 104.439697266000053, + 13.669677734000061 + ], + [ + 104.432495117000087, + 13.674316406000059 + ], + [ + 104.430480957000043, + 13.676513672000056 + ], + [ + 104.428710937000062, + 13.679077148000033 + ], + [ + 104.427917480000076, + 13.683288574000073 + ], + [ + 104.428100586000085, + 13.687927246000072 + ], + [ + 104.429321289000086, + 13.691284180000025 + ], + [ + 104.431091309000067, + 13.695129395000038 + ], + [ + 104.432128906000059, + 13.70007324200003 + ], + [ + 104.430297852000081, + 13.702880859000061 + ], + [ + 104.429687500000057, + 13.706481934000067 + ], + [ + 104.428527832000043, + 13.711120605000076 + ], + [ + 104.428527832000043, + 13.716491699000073 + ], + [ + 104.428283691000047, + 13.720886230000076 + ], + [ + 104.425903320000032, + 13.725097656000059 + ], + [ + 104.423889160000044, + 13.728271484000061 + ], + [ + 104.423278809000067, + 13.731689453000058 + ], + [ + 104.420471191000047, + 13.735290527000075 + ], + [ + 104.416503906000059, + 13.737915039000029 + ], + [ + 104.412902832000043, + 13.740478516000053 + ], + [ + 104.410705566000047, + 13.744506836000028 + ], + [ + 104.409301758000083, + 13.748291016000053 + ], + [ + 104.408325195000032, + 13.751281738000046 + ], + [ + 104.409729004000042, + 13.754089355000076 + ], + [ + 104.412719727000081, + 13.757507324000073 + ], + [ + 104.414672852000081, + 13.761474609000061 + ], + [ + 104.414916992000087, + 13.765502930000025 + ], + [ + 104.412902832000043, + 13.768920898000033 + ], + [ + 104.409118652000075, + 13.770874023000033 + ], + [ + 104.405883789000086, + 13.771911621000072 + ], + [ + 104.402526855000076, + 13.773315430000025 + ], + [ + 104.399902344000054, + 13.775085449000073 + ], + [ + 104.397521973000039, + 13.776672363000046 + ], + [ + 104.395690918000071, + 13.779113770000038 + ], + [ + 104.394104004000042, + 13.781677246000072 + ], + [ + 104.392700195000032, + 13.785095215000069 + ], + [ + 104.392089844000054, + 13.789489746000072 + ], + [ + 104.391296387000068, + 13.795104980000076 + ], + [ + 104.389099121000072, + 13.799499512000068 + ], + [ + 104.387695312000062, + 13.803527832000043 + ], + [ + 104.385925293000071, + 13.806701660000044 + ], + [ + 104.382080078000058, + 13.809692383000026 + ], + [ + 104.377685547000056, + 13.80889892600004 + ], + [ + 104.373474121000072, + 13.808715820000032 + ], + [ + 104.368713379000042, + 13.807922363000046 + ], + [ + 104.364501953000058, + 13.807128906000059 + ], + [ + 104.361328125000057, + 13.807922363000046 + ], + [ + 104.359313965000069, + 13.810302734000061 + ], + [ + 104.358276367000087, + 13.813476562000062 + ], + [ + 104.359497070000032, + 13.816894531000059 + ], + [ + 104.362487793000071, + 13.819702148000033 + ], + [ + 104.365478516000053, + 13.822692871000072 + ], + [ + 104.36749267600004, + 13.825683594000054 + ], + [ + 104.368530273000033, + 13.829101562000062 + ], + [ + 104.368530273000033, + 13.832519531000059 + ], + [ + 104.367919922000056, + 13.835327148000033 + ], + [ + 104.368896484000061, + 13.838684082000043 + ], + [ + 104.374877930000082, + 13.837890625000057 + ], + [ + 104.378295898000033, + 13.837890625000057 + ], + [ + 104.380310059000067, + 13.840270996000072 + ], + [ + 104.381530762000068, + 13.843078613000046 + ], + [ + 104.381896973000039, + 13.847106934000067 + ], + [ + 104.382324219000054, + 13.851501465000069 + ], + [ + 104.385498047000056, + 13.853088379000042 + ], + [ + 104.389709473000039, + 13.855529785000044 + ], + [ + 104.390319824000073, + 13.859130859000061 + ], + [ + 104.392700195000032, + 13.861694336000028 + ], + [ + 104.395690918000071, + 13.864318848000039 + ], + [ + 104.393310547000056, + 13.866882324000073 + ], + [ + 104.390319824000073, + 13.868530273000033 + ], + [ + 104.390686035000044, + 13.872070312000062 + ], + [ + 104.391723633000083, + 13.876098633000026 + ], + [ + 104.393310547000056, + 13.879516602000024 + ], + [ + 104.394714355000076, + 13.882324219000054 + ], + [ + 104.396118164000086, + 13.887084961000028 + ], + [ + 104.399291992000087, + 13.891723633000026 + ], + [ + 104.403076172000056, + 13.892700195000032 + ], + [ + 104.409118652000075, + 13.891296387000068 + ], + [ + 104.412902832000043, + 13.890502930000025 + ], + [ + 104.417297363000046, + 13.891723633000026 + ], + [ + 104.417114258000083, + 13.895690918000071 + ], + [ + 104.414672852000081, + 13.897888184000067 + ], + [ + 104.410705566000047, + 13.901123047000056 + ], + [ + 104.407470703000058, + 13.904724121000072 + ], + [ + 104.407897949000073, + 13.908874512000068 + ], + [ + 104.411499023000033, + 13.913085937000062 + ], + [ + 104.414672852000081, + 13.915100098000039 + ], + [ + 104.417480469000054, + 13.916687012000068 + ], + [ + 104.420898437000062, + 13.919128418000071 + ], + [ + 104.422729492000087, + 13.921875 + ], + [ + 104.423278809000067, + 13.924926758000026 + ], + [ + 104.423706055000082, + 13.927917480000076 + ], + [ + 104.424926758000083, + 13.931701660000044 + ], + [ + 104.426330566000047, + 13.935302734000061 + ], + [ + 104.425292969000054, + 13.938476562000062 + ], + [ + 104.421875, + 13.938903809000067 + ], + [ + 104.421508789000086, + 13.942687988000046 + ], + [ + 104.422302246000072, + 13.945678711000028 + ], + [ + 104.422912598000039, + 13.948913574000073 + ], + [ + 104.421081543000071, + 13.952697754000042 + ], + [ + 104.420104980000076, + 13.957092285000044 + ], + [ + 104.423889160000044, + 13.959106445000032 + ], + [ + 104.425476074000073, + 13.962890625000057 + ], + [ + 104.42608642600004, + 13.967285156000059 + ], + [ + 104.427124023000033, + 13.970275879000042 + ], + [ + 104.427673340000069, + 13.973083496000072 + ], + [ + 104.426696777000075, + 13.977294922000056 + ], + [ + 104.424316406000059, + 13.981079102000024 + ], + [ + 104.423095703000058, + 13.985290527000075 + ], + [ + 104.421325684000067, + 13.988098145000038 + ], + [ + 104.419311523000033, + 13.991271973000039 + ], + [ + 104.417724609000061, + 13.994506836000028 + ], + [ + 104.417907715000069, + 13.997924805000025 + ], + [ + 104.418701172000056, + 14.001708984000061 + ], + [ + 104.419311523000033, + 14.005493164000029 + ], + [ + 104.420715332000043, + 14.008300781000059 + ], + [ + 104.423522949000073, + 14.010925293000071 + ], + [ + 104.425109863000046, + 14.013671875000057 + ], + [ + 104.425109863000046, + 14.017089844000054 + ], + [ + 104.423889160000044, + 14.020324707000043 + ], + [ + 104.423278809000067, + 14.023498535000044 + ], + [ + 104.42608642600004, + 14.024475098000039 + ], + [ + 104.429321289000086, + 14.026672363000046 + ], + [ + 104.430114746000072, + 14.031311035000044 + ], + [ + 104.429077148000033, + 14.034912109000061 + ], + [ + 104.429321289000086, + 14.037902832000043 + ], + [ + 104.430480957000043, + 14.040893555000025 + ], + [ + 104.430480957000043, + 14.043884277000075 + ], + [ + 104.430480957000043, + 14.046875 + ], + [ + 104.432922363000046, + 14.049499512000068 + ], + [ + 104.433288574000073, + 14.052490234000061 + ], + [ + 104.434082031000059, + 14.056701660000044 + ], + [ + 104.435119629000042, + 14.059875488000046 + ], + [ + 104.436096191000047, + 14.063110352000024 + ], + [ + 104.436706543000071, + 14.066284180000025 + ], + [ + 104.438110352000081, + 14.069519043000071 + ], + [ + 104.440124512000068, + 14.07312011700003 + ], + [ + 104.444091797000056, + 14.07452392600004 + ], + [ + 104.448303223000039, + 14.076110840000069 + ], + [ + 104.451293945000032, + 14.078674316000047 + ], + [ + 104.453125, + 14.083129883000026 + ], + [ + 104.456481934000067, + 14.087707520000038 + ], + [ + 104.456481934000067, + 14.091491699000073 + ], + [ + 104.45928955100004, + 14.094909668000071 + ], + [ + 104.462890625000057, + 14.098083496000072 + ], + [ + 104.465087891000053, + 14.101074219000054 + ], + [ + 104.467529297000056, + 14.103515625000057 + ], + [ + 104.469116211000085, + 14.105895996000072 + ], + [ + 104.472473145000038, + 14.106689453000058 + ], + [ + 104.475891113000046, + 14.110290527000075 + ], + [ + 104.478271484000061, + 14.114685059000067 + ], + [ + 104.480712891000053, + 14.11749267600004 + ], + [ + 104.483520508000083, + 14.119323730000076 + ], + [ + 104.486877441000047, + 14.120300293000071 + ], + [ + 104.489929199000073, + 14.123291016000053 + ], + [ + 104.492126465000069, + 14.127075195000032 + ], + [ + 104.495483398000033, + 14.130310059000067 + ], + [ + 104.499328613000046, + 14.132080078000058 + ], + [ + 104.499694824000073, + 14.135314941000047 + ], + [ + 104.502319336000085, + 14.138122559000067 + ], + [ + 104.506530762000068, + 14.140075684000067 + ], + [ + 104.507507324000073, + 14.145324707000043 + ], + [ + 104.505493164000086, + 14.148315430000025 + ], + [ + 104.502929687000062, + 14.151306152000075 + ], + [ + 104.499511719000054, + 14.153320312000062 + ], + [ + 104.497070312000062, + 14.155273437000062 + ], + [ + 104.49249267600004, + 14.156311035000044 + ], + [ + 104.488525391000053, + 14.158081055000025 + ], + [ + 104.487121582000043, + 14.160888672000056 + ], + [ + 104.483520508000083, + 14.161682129000042 + ], + [ + 104.480285645000038, + 14.164672852000024 + ], + [ + 104.476684570000032, + 14.166076660000044 + ], + [ + 104.472900391000053, + 14.168884277000075 + ], + [ + 104.470703125000057, + 14.174499512000068 + ], + [ + 104.466918945000032, + 14.177124023000033 + ], + [ + 104.462707520000038, + 14.178100586000028 + ], + [ + 104.460876465000069, + 14.180480957000043 + ], + [ + 104.459472656000059, + 14.185119629000042 + ], + [ + 104.457275391000053, + 14.188903809000067 + ], + [ + 104.453918457000043, + 14.190917969000054 + ], + [ + 104.452087402000075, + 14.194091797000056 + ], + [ + 104.45147705100004, + 14.197692871000072 + ], + [ + 104.449279785000044, + 14.19952392600004 + ], + [ + 104.445129395000038, + 14.200927734000061 + ], + [ + 104.443481445000032, + 14.204711914000029 + ], + [ + 104.442077637000068, + 14.208923340000069 + ], + [ + 104.444274902000075, + 14.211303711000028 + ], + [ + 104.448730469000054, + 14.211303711000028 + ], + [ + 104.452514648000033, + 14.210876465000069 + ], + [ + 104.456726074000073, + 14.212890625000057 + ], + [ + 104.457885742000087, + 14.215881348000039 + ], + [ + 104.457092285000044, + 14.219482422000056 + ], + [ + 104.458679199000073, + 14.223876953000058 + ], + [ + 104.460083008000083, + 14.228881836000028 + ], + [ + 104.462890625000057, + 14.233703613000046 + ], + [ + 104.463317871000072, + 14.238098145000038 + ], + [ + 104.461486816000047, + 14.24108886700003 + ], + [ + 104.462097168000071, + 14.244323730000076 + ], + [ + 104.461914062000062, + 14.247680664000029 + ], + [ + 104.461914062000062, + 14.251098633000026 + ], + [ + 104.459716797000056, + 14.256530762000068 + ], + [ + 104.455871582000043, + 14.259277344000054 + ], + [ + 104.457275391000053, + 14.263488770000038 + ], + [ + 104.456909180000082, + 14.26788330100004 + ], + [ + 104.455871582000043, + 14.272888184000067 + ], + [ + 104.457702637000068, + 14.278320312000062 + ], + [ + 104.456115723000039, + 14.28210449200003 + ], + [ + 104.456909180000082, + 14.285278320000032 + ], + [ + 104.456298828000058, + 14.290100098000039 + ], + [ + 104.457275391000053, + 14.294311523000033 + ], + [ + 104.457275391000053, + 14.297485352000024 + ], + [ + 104.458129883000083, + 14.30108642600004 + ], + [ + 104.45928955100004, + 14.303894043000071 + ], + [ + 104.460510254000042, + 14.306701660000044 + ], + [ + 104.461730957000043, + 14.310485840000069 + ], + [ + 104.463684082000043, + 14.31530761700003 + ], + [ + 104.464904785000044, + 14.320922852000024 + ], + [ + 104.465515137000068, + 14.32647705100004 + ], + [ + 104.465881348000039, + 14.333496094000054 + ], + [ + 104.465881348000039, + 14.336730957000043 + ], + [ + 104.467285156000059, + 14.342285156000059 + ], + [ + 104.466308594000054, + 14.345092773000033 + ], + [ + 104.470520020000038, + 14.346496582000043 + ], + [ + 104.474304199000073, + 14.349304199000073 + ], + [ + 104.477111816000047, + 14.351074219000054 + ], + [ + 104.478881836000085, + 14.353881836000028 + ], + [ + 104.477722168000071, + 14.356872559000067 + ], + [ + 104.476318359000061, + 14.359497070000032 + ], + [ + 104.477905273000033, + 14.362915039000029 + ], + [ + 104.480712891000053, + 14.365478516000053 + ], + [ + 104.483276367000087, + 14.367675781000059 + ], + [ + 104.485717773000033, + 14.369323730000076 + ], + [ + 104.488525391000053, + 14.370483398000033 + ], + [ + 104.491271973000039, + 14.371704102000024 + ], + [ + 104.494873047000056, + 14.373107910000044 + ], + [ + 104.499084473000039, + 14.375915527000075 + ], + [ + 104.503723145000038, + 14.374694824000073 + ], + [ + 104.507690430000082, + 14.373474121000072 + ], + [ + 104.512329102000081, + 14.372314453000058 + ], + [ + 104.514892578000058, + 14.371093750000057 + ], + [ + 104.518493652000075, + 14.368103027000075 + ], + [ + 104.520874023000033, + 14.365478516000053 + ], + [ + 104.523315430000082, + 14.362915039000029 + ], + [ + 104.525329590000069, + 14.360717773000033 + ], + [ + 104.528320312000062, + 14.360290527000075 + ], + [ + 104.531311035000044, + 14.359130859000061 + ], + [ + 104.534729004000042, + 14.356079102000024 + ], + [ + 104.538513184000067, + 14.355529785000044 + ], + [ + 104.541870117000087, + 14.35632324200003 + ], + [ + 104.544677734000061, + 14.356872559000067 + ], + [ + 104.547485352000081, + 14.356079102000024 + ], + [ + 104.551879883000083, + 14.354492187000062 + ], + [ + 104.556884766000053, + 14.353698730000076 + ], + [ + 104.561096191000047, + 14.353881836000028 + ], + [ + 104.565490723000039, + 14.354919434000067 + ], + [ + 104.567504883000083, + 14.358703613000046 + ], + [ + 104.571105957000043, + 14.360717773000033 + ], + [ + 104.575683594000054, + 14.358703613000046 + ], + [ + 104.579711914000086, + 14.358886719000054 + ], + [ + 104.579711914000086, + 14.361877441000047 + ], + [ + 104.579284668000071, + 14.365112305000025 + ], + [ + 104.578918457000043, + 14.369873047000056 + ], + [ + 104.579101562000062, + 14.374511719000054 + ], + [ + 104.583923340000069, + 14.377502441000047 + ], + [ + 104.587097168000071, + 14.379882812000062 + ], + [ + 104.589477539000086, + 14.381530762000068 + ], + [ + 104.591308594000054, + 14.384094238000046 + ], + [ + 104.593078613000046, + 14.386901855000076 + ], + [ + 104.595092773000033, + 14.38952636700003 + ], + [ + 104.597717285000044, + 14.392089844000054 + ], + [ + 104.59991455100004, + 14.394287109000061 + ], + [ + 104.603088379000042, + 14.396728516000053 + ], + [ + 104.608276367000087, + 14.397521973000039 + ], + [ + 104.613098145000038, + 14.398071289000029 + ], + [ + 104.616088867000087, + 14.400085449000073 + ], + [ + 104.618896484000061, + 14.402099609000061 + ], + [ + 104.621704102000081, + 14.404296875000057 + ], + [ + 104.624328613000046, + 14.405883789000029 + ], + [ + 104.626708984000061, + 14.407714844000054 + ], + [ + 104.630310059000067, + 14.411499023000033 + ], + [ + 104.633483887000068, + 14.415283203000058 + ], + [ + 104.636901855000076, + 14.418701172000056 + ], + [ + 104.640686035000044, + 14.42272949200003 + ], + [ + 104.645080566000047, + 14.423522949000073 + ], + [ + 104.649108887000068, + 14.423706055000025 + ], + [ + 104.652526855000076, + 14.421691895000038 + ], + [ + 104.654479980000076, + 14.417480469000054 + ], + [ + 104.655883789000086, + 14.413513184000067 + ], + [ + 104.654724121000072, + 14.410278320000032 + ], + [ + 104.653503418000071, + 14.407470703000058 + ], + [ + 104.655883789000086, + 14.404479980000076 + ], + [ + 104.657714844000054, + 14.402282715000069 + ], + [ + 104.660278320000089, + 14.400512695000032 + ], + [ + 104.664672852000081, + 14.399475098000039 + ], + [ + 104.668518066000047, + 14.39929199200003 + ], + [ + 104.672912598000039, + 14.398925781000059 + ], + [ + 104.67608642600004, + 14.398315430000025 + ], + [ + 104.679321289000086, + 14.397705078000058 + ], + [ + 104.682312012000068, + 14.398315430000025 + ], + [ + 104.684875488000046, + 14.400085449000073 + ], + [ + 104.686706543000071, + 14.403930664000029 + ], + [ + 104.689270020000038, + 14.408081055000025 + ], + [ + 104.689880371000072, + 14.411682129000042 + ], + [ + 104.690673828000058, + 14.415893555000025 + ], + [ + 104.694091797000056, + 14.419494629000042 + ], + [ + 104.696289062000062, + 14.422119141000053 + ], + [ + 104.698120117000087, + 14.425109863000046 + ], + [ + 104.699279785000044, + 14.427917480000076 + ], + [ + 104.70147705100004, + 14.429687500000057 + ], + [ + 104.703491211000085, + 14.431884766000053 + ], + [ + 104.707885742000087, + 14.434082031000059 + ], + [ + 104.712097168000071, + 14.434326172000056 + ], + [ + 104.714294434000067, + 14.431518555000025 + ], + [ + 104.717712402000075, + 14.427307129000042 + ], + [ + 104.721496582000043, + 14.42468261700003 + ], + [ + 104.723510742000087, + 14.421875 + ], + [ + 104.723083496000072, + 14.417480469000054 + ], + [ + 104.721679687000062, + 14.413513184000067 + ], + [ + 104.720703125000057, + 14.410278320000032 + ], + [ + 104.720275879000042, + 14.406921387000068 + ], + [ + 104.724121094000054, + 14.403930664000029 + ], + [ + 104.726684570000089, + 14.406127930000025 + ], + [ + 104.728515625000057, + 14.408691406000059 + ], + [ + 104.731323242000087, + 14.412292480000076 + ], + [ + 104.73468017600004, + 14.413513184000067 + ], + [ + 104.737670898000033, + 14.414306641000053 + ], + [ + 104.741699219000054, + 14.413513184000067 + ], + [ + 104.745117187000062, + 14.410888672000056 + ], + [ + 104.748718262000068, + 14.409301758000026 + ], + [ + 104.753479004000042, + 14.405883789000029 + ], + [ + 104.755126953000058, + 14.408325195000032 + ], + [ + 104.757324219000054, + 14.411071777000075 + ], + [ + 104.757080078000058, + 14.414123535000044 + ], + [ + 104.759277344000054, + 14.41632080100004 + ], + [ + 104.762084961000085, + 14.418884277000075 + ], + [ + 104.765502930000082, + 14.422119141000053 + ], + [ + 104.768493652000075, + 14.423889160000044 + ], + [ + 104.771484375000057, + 14.423889160000044 + ], + [ + 104.775329590000069, + 14.424316406000059 + ], + [ + 104.778503418000071, + 14.425720215000069 + ], + [ + 104.781311035000044, + 14.428283691000047 + ], + [ + 104.783691406000059, + 14.430114746000072 + ], + [ + 104.786071777000075, + 14.431884766000053 + ], + [ + 104.789672852000081, + 14.434326172000056 + ], + [ + 104.793884277000075, + 14.435485840000069 + ], + [ + 104.796875, + 14.435485840000069 + ], + [ + 104.800903320000089, + 14.436279297000056 + ], + [ + 104.804687500000057, + 14.437316895000038 + ], + [ + 104.808715820000089, + 14.436523437000062 + ], + [ + 104.813720703000058, + 14.43249511700003 + ], + [ + 104.817687988000046, + 14.428283691000047 + ], + [ + 104.819274902000075, + 14.423889160000044 + ], + [ + 104.819702148000033, + 14.419311523000033 + ], + [ + 104.824096680000082, + 14.418701172000056 + ], + [ + 104.829101562000062, + 14.418518066000047 + ], + [ + 104.832702637000068, + 14.416503906000059 + ], + [ + 104.834472656000059, + 14.414123535000044 + ], + [ + 104.834899902000075, + 14.409484863000046 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 3.4379899422500002, + "Shape_Area": 0.39467076028100001, + "ADM1_EN": "Prey Veng", + "ADM1_PCODE": "KH14", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105.331481934000067, + 11.864685059000067 + ], + [ + 105.335083008000083, + 11.862915039000029 + ], + [ + 105.337524414000086, + 11.859313965000069 + ], + [ + 105.339294434000067, + 11.855895996000072 + ], + [ + 105.343505859000061, + 11.853881836000028 + ], + [ + 105.347290039000086, + 11.854309082000043 + ], + [ + 105.350280762000068, + 11.852111816000047 + ], + [ + 105.354492187000062, + 11.852905273000033 + ], + [ + 105.358276367000087, + 11.854919434000067 + ], + [ + 105.362121582000043, + 11.856506348000039 + ], + [ + 105.365295410000044, + 11.855102539000029 + ], + [ + 105.367126465000069, + 11.852111816000047 + ], + [ + 105.369873047000056, + 11.850891113000046 + ], + [ + 105.372924805000082, + 11.849121094000054 + ], + [ + 105.373718262000068, + 11.844299316000047 + ], + [ + 105.377075195000089, + 11.844726562000062 + ], + [ + 105.381103516000053, + 11.844726562000062 + ], + [ + 105.385314941000047, + 11.842712402000075 + ], + [ + 105.389282227000081, + 11.841308594000054 + ], + [ + 105.391296387000068, + 11.838684082000043 + ], + [ + 105.394287109000061, + 11.840087891000053 + ], + [ + 105.396484375000057, + 11.841918945000032 + ], + [ + 105.398681641000053, + 11.843688965000069 + ], + [ + 105.401306152000075, + 11.846496582000043 + ], + [ + 105.405090332000043, + 11.844909668000071 + ], + [ + 105.404907227000081, + 11.841674805000025 + ], + [ + 105.409301758000083, + 11.840087891000053 + ], + [ + 105.409912109000061, + 11.835693359000061 + ], + [ + 105.411682129000042, + 11.833312988000046 + ], + [ + 105.415283203000058, + 11.831298828000058 + ], + [ + 105.415893555000082, + 11.828491211000028 + ], + [ + 105.418701172000056, + 11.827697754000042 + ], + [ + 105.419128418000071, + 11.823486328000058 + ], + [ + 105.415893555000082, + 11.821289062000062 + ], + [ + 105.412719727000081, + 11.817871094000054 + ], + [ + 105.413513184000067, + 11.813476562000062 + ], + [ + 105.414306641000053, + 11.809692383000026 + ], + [ + 105.415283203000058, + 11.805480957000043 + ], + [ + 105.415283203000058, + 11.802307129000042 + ], + [ + 105.413330078000058, + 11.800109863000046 + ], + [ + 105.410522461000085, + 11.796875 + ], + [ + 105.407470703000058, + 11.794128418000071 + ], + [ + 105.412475586000085, + 11.792724609000061 + ], + [ + 105.414489746000072, + 11.788696289000029 + ], + [ + 105.415100098000039, + 11.784118652000075 + ], + [ + 105.416870117000087, + 11.779296875000057 + ], + [ + 105.418701172000056, + 11.776916504000042 + ], + [ + 105.418884277000075, + 11.772521973000039 + ], + [ + 105.422302246000072, + 11.770507812000062 + ], + [ + 105.424499512000068, + 11.768127441000047 + ], + [ + 105.427307129000042, + 11.76593017600004 + ], + [ + 105.431274414000086, + 11.763488770000038 + ], + [ + 105.43389892600004, + 11.762084961000028 + ], + [ + 105.438110352000081, + 11.759094238000046 + ], + [ + 105.442321777000075, + 11.755676270000038 + ], + [ + 105.447326660000044, + 11.755126953000058 + ], + [ + 105.451110840000069, + 11.757080078000058 + ], + [ + 105.454528809000067, + 11.759704590000069 + ], + [ + 105.457519531000059, + 11.762329102000024 + ], + [ + 105.460693359000061, + 11.765075684000067 + ], + [ + 105.463684082000043, + 11.765502930000025 + ], + [ + 105.466918945000089, + 11.765319824000073 + ], + [ + 105.470703125000057, + 11.764709473000039 + ], + [ + 105.475097656000059, + 11.76452636700003 + ], + [ + 105.478271484000061, + 11.764099121000072 + ], + [ + 105.481323242000087, + 11.764099121000072 + ], + [ + 105.485900879000042, + 11.763488770000038 + ], + [ + 105.490722656000059, + 11.763305664000029 + ], + [ + 105.495117187000062, + 11.763671875000057 + ], + [ + 105.498291016000053, + 11.763305664000029 + ], + [ + 105.501708984000061, + 11.762329102000024 + ], + [ + 105.506103516000053, + 11.759887695000032 + ], + [ + 105.510498047000056, + 11.757690430000025 + ], + [ + 105.514099121000072, + 11.756103516000053 + ], + [ + 105.518676758000083, + 11.755310059000067 + ], + [ + 105.523315430000082, + 11.755920410000044 + ], + [ + 105.528076172000056, + 11.755920410000044 + ], + [ + 105.531127930000082, + 11.754272461000028 + ], + [ + 105.535095215000069, + 11.752319336000028 + ], + [ + 105.539672852000081, + 11.751708984000061 + ], + [ + 105.54327392600004, + 11.751708984000061 + ], + [ + 105.546325684000067, + 11.751281738000046 + ], + [ + 105.549072266000053, + 11.75030517600004 + ], + [ + 105.552307129000042, + 11.75030517600004 + ], + [ + 105.557312012000068, + 11.749694824000073 + ], + [ + 105.562316895000038, + 11.749328613000046 + ], + [ + 105.568481445000089, + 11.749084473000039 + ], + [ + 105.575073242000087, + 11.751098633000026 + ], + [ + 105.577880859000061, + 11.749084473000039 + ], + [ + 105.581115723000039, + 11.748291016000053 + ], + [ + 105.585083008000083, + 11.747070312000062 + ], + [ + 105.589111328000058, + 11.746093750000057 + ], + [ + 105.594726562000062, + 11.745300293000071 + ], + [ + 105.598876953000058, + 11.745300293000071 + ], + [ + 105.603088379000042, + 11.745300293000071 + ], + [ + 105.607910156000059, + 11.744873047000056 + ], + [ + 105.611328125000057, + 11.744323730000076 + ], + [ + 105.615295410000044, + 11.743286133000026 + ], + [ + 105.619873047000056, + 11.74249267600004 + ], + [ + 105.624084473000039, + 11.743103027000075 + ], + [ + 105.628295898000033, + 11.742919922000056 + ], + [ + 105.631713867000087, + 11.742919922000056 + ], + [ + 105.635925293000071, + 11.743286133000026 + ], + [ + 105.639526367000087, + 11.743286133000026 + ], + [ + 105.644104004000042, + 11.743713379000042 + ], + [ + 105.649291992000087, + 11.743530273000033 + ], + [ + 105.653076172000056, + 11.742919922000056 + ], + [ + 105.656311035000044, + 11.74249267600004 + ], + [ + 105.660522461000085, + 11.740722656000059 + ], + [ + 105.664672852000081, + 11.739685059000067 + ], + [ + 105.66827392600004, + 11.738708496000072 + ], + [ + 105.671325684000067, + 11.739685059000067 + ], + [ + 105.675720215000069, + 11.740722656000059 + ], + [ + 105.680725098000039, + 11.740478516000053 + ], + [ + 105.684082031000059, + 11.740722656000059 + ], + [ + 105.687927246000072, + 11.741271973000039 + ], + [ + 105.694702148000033, + 11.74249267600004 + ], + [ + 105.698120117000087, + 11.742919922000056 + ], + [ + 105.701293945000089, + 11.74249267600004 + ], + [ + 105.704528809000067, + 11.739685059000067 + ], + [ + 105.706726074000073, + 11.737487793000071 + ], + [ + 105.710327148000033, + 11.734130859000061 + ], + [ + 105.713684082000043, + 11.730895996000072 + ], + [ + 105.716491699000073, + 11.728271484000061 + ], + [ + 105.720275879000042, + 11.725097656000059 + ], + [ + 105.721679687000062, + 11.721496582000043 + ], + [ + 105.723876953000058, + 11.717285156000059 + ], + [ + 105.725524902000075, + 11.713500977000024 + ], + [ + 105.727294922000056, + 11.710693359000061 + ], + [ + 105.728698730000076, + 11.70788574200003 + ], + [ + 105.730102539000086, + 11.704895020000038 + ], + [ + 105.731323242000087, + 11.702270508000026 + ], + [ + 105.731689453000058, + 11.699096680000025 + ], + [ + 105.73272705100004, + 11.693115234000061 + ], + [ + 105.736511230000076, + 11.691101074000073 + ], + [ + 105.739685059000067, + 11.688476562000062 + ], + [ + 105.742309570000089, + 11.685913086000028 + ], + [ + 105.745910645000038, + 11.682922363000046 + ], + [ + 105.749084473000039, + 11.681701660000044 + ], + [ + 105.751892090000069, + 11.679870605000076 + ], + [ + 105.755920410000044, + 11.677917480000076 + ], + [ + 105.757507324000073, + 11.673522949000073 + ], + [ + 105.758483887000068, + 11.669494629000042 + ], + [ + 105.762512207000043, + 11.668090820000032 + ], + [ + 105.764892578000058, + 11.663879395000038 + ], + [ + 105.765075684000067, + 11.659301758000026 + ], + [ + 105.767089844000054, + 11.655090332000043 + ], + [ + 105.764709473000039, + 11.652893066000047 + ], + [ + 105.766906738000046, + 11.65069580100004 + ], + [ + 105.76788330100004, + 11.646118164000029 + ], + [ + 105.770080566000047, + 11.641113281000059 + ], + [ + 105.774719238000046, + 11.637695312000062 + ], + [ + 105.775085449000073, + 11.633911133000026 + ], + [ + 105.778930664000086, + 11.631286621000072 + ], + [ + 105.780273437000062, + 11.627929687000062 + ], + [ + 105.783081055000082, + 11.626708984000061 + ], + [ + 105.785888672000056, + 11.623718262000068 + ], + [ + 105.789672852000081, + 11.620910645000038 + ], + [ + 105.789916992000087, + 11.616699219000054 + ], + [ + 105.79327392600004, + 11.613891602000024 + ], + [ + 105.794128418000071, + 11.610290527000075 + ], + [ + 105.795715332000043, + 11.60772705100004 + ], + [ + 105.798522949000073, + 11.606506348000039 + ], + [ + 105.801330566000047, + 11.605895996000072 + ], + [ + 105.804077148000033, + 11.605285645000038 + ], + [ + 105.806884766000053, + 11.603271484000061 + ], + [ + 105.809509277000075, + 11.599487305000025 + ], + [ + 105.805480957000043, + 11.59851074200003 + ], + [ + 105.799926758000083, + 11.597900391000053 + ], + [ + 105.796691895000038, + 11.597106934000067 + ], + [ + 105.79327392600004, + 11.595275879000042 + ], + [ + 105.790710449000073, + 11.592895508000026 + ], + [ + 105.788330078000058, + 11.591125488000046 + ], + [ + 105.786071777000075, + 11.589111328000058 + ], + [ + 105.78350830100004, + 11.587890625000057 + ], + [ + 105.780517578000058, + 11.587707520000038 + ], + [ + 105.776916504000042, + 11.587890625000057 + ], + [ + 105.773681641000053, + 11.587524414000029 + ], + [ + 105.770690918000071, + 11.587707520000038 + ], + [ + 105.767517090000069, + 11.588500977000024 + ], + [ + 105.764099121000072, + 11.587707520000038 + ], + [ + 105.760314941000047, + 11.586730957000043 + ], + [ + 105.757324219000054, + 11.586303711000028 + ], + [ + 105.753295898000033, + 11.586730957000043 + ], + [ + 105.747314453000058, + 11.588073730000076 + ], + [ + 105.743713379000042, + 11.585510254000042 + ], + [ + 105.74249267600004, + 11.581909180000025 + ], + [ + 105.743103027000075, + 11.577880859000061 + ], + [ + 105.740112305000082, + 11.577087402000075 + ], + [ + 105.736877441000047, + 11.577087402000075 + ], + [ + 105.733886719000054, + 11.577087402000075 + ], + [ + 105.729675293000071, + 11.57647705100004 + ], + [ + 105.726074219000054, + 11.575500488000046 + ], + [ + 105.721679687000062, + 11.574279785000044 + ], + [ + 105.718078613000046, + 11.57312011700003 + ], + [ + 105.712707520000038, + 11.571472168000071 + ], + [ + 105.708679199000073, + 11.570495605000076 + ], + [ + 105.703918457000043, + 11.568908691000047 + ], + [ + 105.699707031000059, + 11.567321777000075 + ], + [ + 105.696289062000062, + 11.565917969000054 + ], + [ + 105.693481445000089, + 11.56530761700003 + ], + [ + 105.690917969000054, + 11.562927246000072 + ], + [ + 105.689270020000038, + 11.559875488000046 + ], + [ + 105.689086914000086, + 11.555297852000024 + ], + [ + 105.690124512000068, + 11.552490234000061 + ], + [ + 105.690673828000058, + 11.549499512000068 + ], + [ + 105.690124512000068, + 11.546325684000067 + ], + [ + 105.687927246000072, + 11.54327392600004 + ], + [ + 105.68389892600004, + 11.539489746000072 + ], + [ + 105.680114746000072, + 11.536926270000038 + ], + [ + 105.677307129000042, + 11.533874512000068 + ], + [ + 105.679504395000038, + 11.529296875000057 + ], + [ + 105.678527832000043, + 11.524108887000068 + ], + [ + 105.680725098000039, + 11.519470215000069 + ], + [ + 105.682922363000046, + 11.515319824000073 + ], + [ + 105.684509277000075, + 11.511718750000057 + ], + [ + 105.685729980000076, + 11.50811767600004 + ], + [ + 105.682312012000068, + 11.505676270000038 + ], + [ + 105.680297852000081, + 11.501892090000069 + ], + [ + 105.679687500000057, + 11.498718262000068 + ], + [ + 105.677124023000033, + 11.496887207000043 + ], + [ + 105.674926758000083, + 11.495117187000062 + ], + [ + 105.671691895000038, + 11.494079590000069 + ], + [ + 105.668884277000075, + 11.491882324000073 + ], + [ + 105.666687012000068, + 11.489074707000043 + ], + [ + 105.665527344000054, + 11.486511230000076 + ], + [ + 105.664916992000087, + 11.481872559000067 + ], + [ + 105.664916992000087, + 11.477294922000056 + ], + [ + 105.666076660000044, + 11.47351074200003 + ], + [ + 105.667480469000054, + 11.469726562000062 + ], + [ + 105.670104980000076, + 11.466308594000054 + ], + [ + 105.668884277000075, + 11.462707520000038 + ], + [ + 105.669311523000033, + 11.45928955100004 + ], + [ + 105.669128418000071, + 11.455322266000053 + ], + [ + 105.667724609000061, + 11.451110840000069 + ], + [ + 105.666076660000044, + 11.44812011700003 + ], + [ + 105.664123535000044, + 11.445129395000038 + ], + [ + 105.661071777000075, + 11.441284180000025 + ], + [ + 105.659484863000046, + 11.438476562000062 + ], + [ + 105.659301758000083, + 11.435302734000061 + ], + [ + 105.658325195000089, + 11.431884766000053 + ], + [ + 105.656494141000053, + 11.427307129000042 + ], + [ + 105.655883789000086, + 11.423095703000058 + ], + [ + 105.656127930000082, + 11.419677734000061 + ], + [ + 105.655700684000067, + 11.415527344000054 + ], + [ + 105.654907227000081, + 11.412719727000024 + ], + [ + 105.653320312000062, + 11.408691406000059 + ], + [ + 105.652282715000069, + 11.403930664000029 + ], + [ + 105.651916504000042, + 11.40069580100004 + ], + [ + 105.651916504000042, + 11.397521973000039 + ], + [ + 105.651916504000042, + 11.394104004000042 + ], + [ + 105.651672363000046, + 11.389099121000072 + ], + [ + 105.652099609000061, + 11.382690430000025 + ], + [ + 105.652893066000047, + 11.377929687000062 + ], + [ + 105.652526855000076, + 11.373107910000044 + ], + [ + 105.652282715000069, + 11.368713379000042 + ], + [ + 105.652282715000069, + 11.364074707000043 + ], + [ + 105.652526855000076, + 11.360473633000026 + ], + [ + 105.652893066000047, + 11.356506348000039 + ], + [ + 105.653320312000062, + 11.351684570000032 + ], + [ + 105.654113770000038, + 11.346923828000058 + ], + [ + 105.654296875000057, + 11.343322754000042 + ], + [ + 105.653503418000071, + 11.338317871000072 + ], + [ + 105.652893066000047, + 11.33428955100004 + ], + [ + 105.652709961000085, + 11.330871582000043 + ], + [ + 105.652282715000069, + 11.327270508000026 + ], + [ + 105.652282715000069, + 11.323913574000073 + ], + [ + 105.652282715000069, + 11.320922852000024 + ], + [ + 105.653320312000062, + 11.317504883000026 + ], + [ + 105.653686523000033, + 11.314086914000029 + ], + [ + 105.655517578000058, + 11.309692383000026 + ], + [ + 105.659301758000083, + 11.305725098000039 + ], + [ + 105.660278320000089, + 11.301513672000056 + ], + [ + 105.660705566000047, + 11.297485352000024 + ], + [ + 105.661926270000038, + 11.29187011700003 + ], + [ + 105.663330078000058, + 11.288330078000058 + ], + [ + 105.665283203000058, + 11.284118652000075 + ], + [ + 105.668090820000089, + 11.278930664000029 + ], + [ + 105.669677734000061, + 11.27429199200003 + ], + [ + 105.668884277000075, + 11.269470215000069 + ], + [ + 105.667907715000069, + 11.264709473000039 + ], + [ + 105.663085937000062, + 11.264892578000058 + ], + [ + 105.658081055000082, + 11.265075684000067 + ], + [ + 105.653076172000056, + 11.264709473000039 + ], + [ + 105.650085449000073, + 11.265686035000044 + ], + [ + 105.648071289000086, + 11.268310547000056 + ], + [ + 105.645324707000043, + 11.271911621000072 + ], + [ + 105.640319824000073, + 11.272888184000067 + ], + [ + 105.637329102000081, + 11.271301270000038 + ], + [ + 105.635681152000075, + 11.268493652000075 + ], + [ + 105.633728027000075, + 11.266113281000059 + ], + [ + 105.636291504000042, + 11.263122559000067 + ], + [ + 105.634704590000069, + 11.257507324000073 + ], + [ + 105.631530762000068, + 11.253295898000033 + ], + [ + 105.627075195000089, + 11.251708984000061 + ], + [ + 105.624511719000054, + 11.249694824000073 + ], + [ + 105.624511719000054, + 11.246704102000024 + ], + [ + 105.625122070000089, + 11.242126465000069 + ], + [ + 105.624694824000073, + 11.237670898000033 + ], + [ + 105.622680664000086, + 11.234130859000061 + ], + [ + 105.620300293000071, + 11.230712891000053 + ], + [ + 105.618530273000033, + 11.227478027000075 + ], + [ + 105.616271973000039, + 11.22351074200003 + ], + [ + 105.614685059000067, + 11.219116211000028 + ], + [ + 105.613525391000053, + 11.21569824200003 + ], + [ + 105.612121582000043, + 11.212890625000057 + ], + [ + 105.610717773000033, + 11.209899902000075 + ], + [ + 105.610107422000056, + 11.206726074000073 + ], + [ + 105.608093262000068, + 11.204284668000071 + ], + [ + 105.60772705100004, + 11.19952392600004 + ], + [ + 105.607910156000059, + 11.195129395000038 + ], + [ + 105.608093262000068, + 11.191528320000032 + ], + [ + 105.609130859000061, + 11.188110352000024 + ], + [ + 105.610290527000075, + 11.184509277000075 + ], + [ + 105.611694336000085, + 11.180908203000058 + ], + [ + 105.612670898000033, + 11.177124023000033 + ], + [ + 105.613281250000057, + 11.172119141000053 + ], + [ + 105.613891602000081, + 11.169311523000033 + ], + [ + 105.613891602000081, + 11.166076660000044 + ], + [ + 105.613281250000057, + 11.162719727000024 + ], + [ + 105.613891602000081, + 11.158874512000068 + ], + [ + 105.613281250000057, + 11.154296875000057 + ], + [ + 105.614074707000043, + 11.149719238000046 + ], + [ + 105.615722656000059, + 11.145324707000043 + ], + [ + 105.617126465000069, + 11.141296387000068 + ], + [ + 105.619079590000069, + 11.136474609000061 + ], + [ + 105.622924805000082, + 11.133300781000059 + ], + [ + 105.625671387000068, + 11.130493164000029 + ], + [ + 105.628479004000042, + 11.128723145000038 + ], + [ + 105.630493164000086, + 11.126281738000046 + ], + [ + 105.633300781000059, + 11.12390136700003 + ], + [ + 105.635314941000047, + 11.121276855000076 + ], + [ + 105.632690430000082, + 11.117126465000069 + ], + [ + 105.629089355000076, + 11.114074707000043 + ], + [ + 105.626525879000042, + 11.110290527000075 + ], + [ + 105.622680664000086, + 11.106872559000067 + ], + [ + 105.618713379000042, + 11.104125977000024 + ], + [ + 105.614685059000067, + 11.101074219000054 + ], + [ + 105.612670898000033, + 11.097106934000067 + ], + [ + 105.60968017600004, + 11.094116211000028 + ], + [ + 105.607116699000073, + 11.090515137000068 + ], + [ + 105.606506348000039, + 11.085876465000069 + ], + [ + 105.602905273000033, + 11.082702637000068 + ], + [ + 105.604125977000081, + 11.077880859000061 + ], + [ + 105.602294922000056, + 11.074096680000025 + ], + [ + 105.602294922000056, + 11.070129395000038 + ], + [ + 105.603271484000061, + 11.067321777000075 + ], + [ + 105.602111816000047, + 11.064270020000038 + ], + [ + 105.602111816000047, + 11.061096191000047 + ], + [ + 105.603515625000057, + 11.058105469000054 + ], + [ + 105.603271484000061, + 11.054077148000033 + ], + [ + 105.602294922000056, + 11.049926758000026 + ], + [ + 105.600097656000059, + 11.045471191000047 + ], + [ + 105.597106934000067, + 11.040283203000058 + ], + [ + 105.595703125000057, + 11.034912109000061 + ], + [ + 105.595275879000042, + 11.030700684000067 + ], + [ + 105.592712402000075, + 11.029479980000076 + ], + [ + 105.590515137000068, + 11.026916504000042 + ], + [ + 105.588684082000043, + 11.023498535000044 + ], + [ + 105.585327148000033, + 11.022705078000058 + ], + [ + 105.586120605000076, + 11.018493652000075 + ], + [ + 105.583496094000054, + 11.014099121000072 + ], + [ + 105.580322266000053, + 11.010314941000047 + ], + [ + 105.580688477000081, + 11.00671386700003 + ], + [ + 105.583923340000069, + 11.003723145000038 + ], + [ + 105.586303711000085, + 11.000671387000068 + ], + [ + 105.590515137000068, + 10.999877930000025 + ], + [ + 105.594726562000062, + 10.997314453000058 + ], + [ + 105.599487305000082, + 10.997314453000058 + ], + [ + 105.602478027000075, + 10.997070312000062 + ], + [ + 105.607299805000082, + 10.995910645000038 + ], + [ + 105.610473633000083, + 10.993103027000075 + ], + [ + 105.610717773000033, + 10.989074707000043 + ], + [ + 105.610900879000042, + 10.985107422000056 + ], + [ + 105.608703613000046, + 10.981689453000058 + ], + [ + 105.610290527000075, + 10.977111816000047 + ], + [ + 105.611877441000047, + 10.973693848000039 + ], + [ + 105.606872559000067, + 10.971679687000062 + ], + [ + 105.603515625000057, + 10.970703125000057 + ], + [ + 105.600280762000068, + 10.969482422000056 + ], + [ + 105.596923828000058, + 10.968505859000061 + ], + [ + 105.593322754000042, + 10.967529297000056 + ], + [ + 105.589294434000067, + 10.966308594000054 + ], + [ + 105.585083008000083, + 10.965270996000072 + ], + [ + 105.581726074000073, + 10.964477539000029 + ], + [ + 105.577697754000042, + 10.963500977000024 + ], + [ + 105.572509766000053, + 10.962097168000071 + ], + [ + 105.567321777000075, + 10.961730957000043 + ], + [ + 105.563293457000043, + 10.961120605000076 + ], + [ + 105.559082031000059, + 10.960083008000026 + ], + [ + 105.554687500000057, + 10.959472656000059 + ], + [ + 105.550720215000069, + 10.958496094000054 + ], + [ + 105.545898437000062, + 10.955871582000043 + ], + [ + 105.542114258000083, + 10.954101562000062 + ], + [ + 105.538330078000058, + 10.952514648000033 + ], + [ + 105.532470703000058, + 10.95147705100004 + ], + [ + 105.528320312000062, + 10.950927734000061 + ], + [ + 105.525085449000073, + 10.950683594000054 + ], + [ + 105.521911621000072, + 10.950317383000026 + ], + [ + 105.517272949000073, + 10.949707031000059 + ], + [ + 105.512695312000062, + 10.949279785000044 + ], + [ + 105.509704590000069, + 10.949096680000025 + ], + [ + 105.505493164000086, + 10.949279785000044 + ], + [ + 105.502502441000047, + 10.95147705100004 + ], + [ + 105.50030517600004, + 10.953674316000047 + ], + [ + 105.497314453000058, + 10.951721191000047 + ], + [ + 105.495483398000033, + 10.948730469000054 + ], + [ + 105.492126465000069, + 10.94952392600004 + ], + [ + 105.488891602000081, + 10.950317383000026 + ], + [ + 105.485473633000083, + 10.951721191000047 + ], + [ + 105.482910156000059, + 10.953918457000043 + ], + [ + 105.482910156000059, + 10.957702637000068 + ], + [ + 105.480529785000044, + 10.959472656000059 + ], + [ + 105.478088379000042, + 10.962097168000071 + ], + [ + 105.473876953000058, + 10.963928223000039 + ], + [ + 105.469482422000056, + 10.963684082000043 + ], + [ + 105.464477539000086, + 10.964111328000058 + ], + [ + 105.461120605000076, + 10.961730957000043 + ], + [ + 105.457275391000053, + 10.957702637000068 + ], + [ + 105.453491211000085, + 10.955505371000072 + ], + [ + 105.448730469000054, + 10.957519531000059 + ], + [ + 105.443908691000047, + 10.960083008000026 + ], + [ + 105.440917969000054, + 10.962707520000038 + ], + [ + 105.440307617000087, + 10.965515137000068 + ], + [ + 105.4375, + 10.967712402000075 + ], + [ + 105.434875488000046, + 10.970092773000033 + ], + [ + 105.432922363000046, + 10.972900391000053 + ], + [ + 105.428527832000043, + 10.974487305000025 + ], + [ + 105.425720215000069, + 10.970092773000033 + ], + [ + 105.424072266000053, + 10.965515137000068 + ], + [ + 105.421508789000086, + 10.962097168000071 + ], + [ + 105.419494629000042, + 10.958496094000054 + ], + [ + 105.417907715000069, + 10.954528809000067 + ], + [ + 105.415893555000082, + 10.951110840000069 + ], + [ + 105.413696289000086, + 10.947326660000044 + ], + [ + 105.411315918000071, + 10.943298340000069 + ], + [ + 105.411071777000075, + 10.939514160000044 + ], + [ + 105.408874512000068, + 10.937316895000038 + ], + [ + 105.406921387000068, + 10.934326172000056 + ], + [ + 105.407104492000087, + 10.930908203000058 + ], + [ + 105.403686523000033, + 10.929077148000033 + ], + [ + 105.397705078000058, + 10.928527832000043 + ], + [ + 105.397094727000081, + 10.924926758000026 + ], + [ + 105.394287109000061, + 10.924316406000059 + ], + [ + 105.391723633000083, + 10.921508789000029 + ], + [ + 105.388305664000086, + 10.919677734000061 + ], + [ + 105.384704590000069, + 10.91632080100004 + ], + [ + 105.383483887000068, + 10.911926270000038 + ], + [ + 105.381103516000053, + 10.910095215000069 + ], + [ + 105.380126953000058, + 10.906127930000025 + ], + [ + 105.379516602000081, + 10.902709961000028 + ], + [ + 105.37530517600004, + 10.903686523000033 + ], + [ + 105.371887207000043, + 10.900878906000059 + ], + [ + 105.370483398000033, + 10.897521973000039 + ], + [ + 105.369689941000047, + 10.894287109000061 + ], + [ + 105.369323730000076, + 10.891296387000068 + ], + [ + 105.367919922000056, + 10.887695312000062 + ], + [ + 105.365112305000082, + 10.886901855000076 + ], + [ + 105.360717773000033, + 10.886901855000076 + ], + [ + 105.360107422000056, + 10.88311767600004 + ], + [ + 105.358703613000046, + 10.879699707000043 + ], + [ + 105.354492187000062, + 10.879516602000024 + ], + [ + 105.351684570000089, + 10.876281738000046 + ], + [ + 105.350097656000059, + 10.873718262000068 + ], + [ + 105.347900391000053, + 10.870727539000029 + ], + [ + 105.345092773000033, + 10.867919922000056 + ], + [ + 105.340087891000053, + 10.867309570000032 + ], + [ + 105.337524414000086, + 10.863891602000024 + ], + [ + 105.337280273000033, + 10.860717773000033 + ], + [ + 105.333312988000046, + 10.861877441000047 + ], + [ + 105.329895020000038, + 10.863891602000024 + ], + [ + 105.327087402000075, + 10.865478516000053 + ], + [ + 105.32452392600004, + 10.866882324000073 + ], + [ + 105.321105957000043, + 10.868713379000042 + ], + [ + 105.317687988000046, + 10.870117187000062 + ], + [ + 105.315124512000068, + 10.871520996000072 + ], + [ + 105.311889648000033, + 10.873291016000053 + ], + [ + 105.307312012000068, + 10.87530517600004 + ], + [ + 105.303100586000085, + 10.877075195000032 + ], + [ + 105.300109863000046, + 10.878479004000042 + ], + [ + 105.296875, + 10.880126953000058 + ], + [ + 105.293518066000047, + 10.881896973000039 + ], + [ + 105.289672852000081, + 10.884094238000046 + ], + [ + 105.285705566000047, + 10.887084961000028 + ], + [ + 105.280273437000062, + 10.888122559000067 + ], + [ + 105.27569580100004, + 10.888305664000029 + ], + [ + 105.272277832000043, + 10.890075684000067 + ], + [ + 105.268676758000083, + 10.893127441000047 + ], + [ + 105.265502930000082, + 10.895690918000071 + ], + [ + 105.258483887000068, + 10.895874023000033 + ], + [ + 105.254272461000085, + 10.895080566000047 + ], + [ + 105.250915527000075, + 10.894470215000069 + ], + [ + 105.247314453000058, + 10.894104004000042 + ], + [ + 105.243103027000075, + 10.893310547000056 + ], + [ + 105.238281250000057, + 10.893127441000047 + ], + [ + 105.234497070000089, + 10.894470215000069 + ], + [ + 105.230102539000086, + 10.896118164000029 + ], + [ + 105.225891113000046, + 10.897521973000039 + ], + [ + 105.222106934000067, + 10.898681641000053 + ], + [ + 105.217712402000075, + 10.900512695000032 + ], + [ + 105.214111328000058, + 10.901916504000042 + ], + [ + 105.211486816000047, + 10.903686523000033 + ], + [ + 105.208496094000054, + 10.905273437000062 + ], + [ + 105.205078125000057, + 10.906921387000068 + ], + [ + 105.201293945000089, + 10.909301758000026 + ], + [ + 105.197509766000053, + 10.911315918000071 + ], + [ + 105.192871094000054, + 10.911682129000042 + ], + [ + 105.189514160000044, + 10.913513184000067 + ], + [ + 105.188720703000058, + 10.918518066000047 + ], + [ + 105.188293457000043, + 10.923522949000073 + ], + [ + 105.187683105000076, + 10.926696777000075 + ], + [ + 105.187072754000042, + 10.930114746000072 + ], + [ + 105.186706543000071, + 10.933288574000073 + ], + [ + 105.186279297000056, + 10.936889648000033 + ], + [ + 105.185729980000076, + 10.94030761700003 + ], + [ + 105.185119629000042, + 10.943725586000028 + ], + [ + 105.184509277000075, + 10.947692871000072 + ], + [ + 105.18389892600004, + 10.951904297000056 + ], + [ + 105.18389892600004, + 10.956726074000073 + ], + [ + 105.184082031000059, + 10.961486816000047 + ], + [ + 105.184326172000056, + 10.964477539000029 + ], + [ + 105.184509277000075, + 10.968078613000046 + ], + [ + 105.185485840000069, + 10.971679687000062 + ], + [ + 105.186889648000033, + 10.976074219000054 + ], + [ + 105.1875, + 10.979125977000024 + ], + [ + 105.189514160000044, + 10.982116699000073 + ], + [ + 105.189880371000072, + 10.986083984000061 + ], + [ + 105.190307617000087, + 10.990112305000025 + ], + [ + 105.190490723000039, + 10.994506836000028 + ], + [ + 105.190917969000054, + 10.998107910000044 + ], + [ + 105.191284180000082, + 11.001525879000042 + ], + [ + 105.192871094000054, + 11.005676270000038 + ], + [ + 105.193908691000047, + 11.010498047000056 + ], + [ + 105.194274902000075, + 11.013488770000038 + ], + [ + 105.194885254000042, + 11.017272949000073 + ], + [ + 105.196105957000043, + 11.021911621000072 + ], + [ + 105.196899414000086, + 11.027099609000061 + ], + [ + 105.196899414000086, + 11.032287598000039 + ], + [ + 105.196899414000086, + 11.036315918000071 + ], + [ + 105.196716309000067, + 11.040100098000039 + ], + [ + 105.196716309000067, + 11.044311523000033 + ], + [ + 105.196716309000067, + 11.048706055000025 + ], + [ + 105.196289062000062, + 11.053894043000071 + ], + [ + 105.196289062000062, + 11.058471680000025 + ], + [ + 105.195922852000081, + 11.062072754000042 + ], + [ + 105.195495605000076, + 11.065673828000058 + ], + [ + 105.194885254000042, + 11.070922852000024 + ], + [ + 105.194519043000071, + 11.075317383000026 + ], + [ + 105.194274902000075, + 11.078491211000028 + ], + [ + 105.194274902000075, + 11.082092285000044 + ], + [ + 105.194274902000075, + 11.086486816000047 + ], + [ + 105.195678711000085, + 11.089477539000029 + ], + [ + 105.198486328000058, + 11.093322754000042 + ], + [ + 105.202697754000042, + 11.097473145000038 + ], + [ + 105.205871582000043, + 11.100891113000046 + ], + [ + 105.209106445000089, + 11.102905273000033 + ], + [ + 105.212097168000071, + 11.105895996000072 + ], + [ + 105.215270996000072, + 11.108703613000046 + ], + [ + 105.217712402000075, + 11.110473633000026 + ], + [ + 105.220275879000042, + 11.112915039000029 + ], + [ + 105.223693848000039, + 11.11608886700003 + ], + [ + 105.225708008000083, + 11.118530273000033 + ], + [ + 105.227722168000071, + 11.120910645000038 + ], + [ + 105.230285645000038, + 11.124694824000073 + ], + [ + 105.232116699000073, + 11.127075195000032 + ], + [ + 105.233886719000054, + 11.129699707000043 + ], + [ + 105.235290527000075, + 11.132507324000073 + ], + [ + 105.236877441000047, + 11.135925293000071 + ], + [ + 105.238708496000072, + 11.140502930000025 + ], + [ + 105.240112305000082, + 11.144897461000028 + ], + [ + 105.241699219000054, + 11.14929199200003 + ], + [ + 105.242675781000059, + 11.152709961000028 + ], + [ + 105.244506836000085, + 11.158081055000025 + ], + [ + 105.245483398000033, + 11.162475586000028 + ], + [ + 105.246093750000057, + 11.16632080100004 + ], + [ + 105.245727539000086, + 11.169677734000061 + ], + [ + 105.245300293000071, + 11.173889160000044 + ], + [ + 105.245117187000062, + 11.178710937000062 + ], + [ + 105.245300293000071, + 11.183105469000054 + ], + [ + 105.246093750000057, + 11.187927246000072 + ], + [ + 105.248718262000068, + 11.19171142600004 + ], + [ + 105.251892090000069, + 11.194519043000071 + ], + [ + 105.255493164000086, + 11.197082520000038 + ], + [ + 105.258728027000075, + 11.199096680000025 + ], + [ + 105.261108398000033, + 11.201293945000032 + ], + [ + 105.262695312000062, + 11.203918457000043 + ], + [ + 105.264099121000072, + 11.207519531000059 + ], + [ + 105.265686035000044, + 11.211486816000047 + ], + [ + 105.26788330100004, + 11.216308594000054 + ], + [ + 105.269470215000069, + 11.220092773000033 + ], + [ + 105.270690918000071, + 11.223083496000072 + ], + [ + 105.272521973000039, + 11.227294922000056 + ], + [ + 105.273681641000053, + 11.231506348000039 + ], + [ + 105.275512695000089, + 11.236328125000057 + ], + [ + 105.276489258000083, + 11.239501953000058 + ], + [ + 105.278320312000062, + 11.243713379000042 + ], + [ + 105.279907227000081, + 11.248107910000044 + ], + [ + 105.281127930000082, + 11.253723145000038 + ], + [ + 105.280883789000086, + 11.257324219000054 + ], + [ + 105.280273437000062, + 11.261291504000042 + ], + [ + 105.280883789000086, + 11.268493652000075 + ], + [ + 105.279479980000076, + 11.27429199200003 + ], + [ + 105.279296875000057, + 11.278686523000033 + ], + [ + 105.278930664000086, + 11.28210449200003 + ], + [ + 105.278076172000056, + 11.285888672000056 + ], + [ + 105.277526855000076, + 11.289123535000044 + ], + [ + 105.276916504000042, + 11.292480469000054 + ], + [ + 105.276489258000083, + 11.295898437000062 + ], + [ + 105.276123047000056, + 11.300292969000054 + ], + [ + 105.27569580100004, + 11.305908203000058 + ], + [ + 105.275085449000073, + 11.311096191000047 + ], + [ + 105.275085449000073, + 11.315490723000039 + ], + [ + 105.274475098000039, + 11.318298340000069 + ], + [ + 105.274108887000068, + 11.321289062000062 + ], + [ + 105.273315430000082, + 11.324890137000068 + ], + [ + 105.272521973000039, + 11.328125 + ], + [ + 105.271728516000053, + 11.330871582000043 + ], + [ + 105.270507812000062, + 11.334472656000059 + ], + [ + 105.268920898000033, + 11.337524414000029 + ], + [ + 105.267272949000073, + 11.340270996000072 + ], + [ + 105.265502930000082, + 11.343872070000032 + ], + [ + 105.264099121000072, + 11.347900391000053 + ], + [ + 105.262878418000071, + 11.350891113000046 + ], + [ + 105.259704590000069, + 11.354492187000062 + ], + [ + 105.26007080100004, + 11.35772705100004 + ], + [ + 105.259521484000061, + 11.361877441000047 + ], + [ + 105.259277344000054, + 11.364929199000073 + ], + [ + 105.258728027000075, + 11.370117187000062 + ], + [ + 105.257873535000044, + 11.37530517600004 + ], + [ + 105.257324219000054, + 11.380676270000038 + ], + [ + 105.256896973000039, + 11.38507080100004 + ], + [ + 105.255676270000038, + 11.39147949200003 + ], + [ + 105.260925293000071, + 11.393493652000075 + ], + [ + 105.264892578000058, + 11.395324707000043 + ], + [ + 105.268310547000056, + 11.397277832000043 + ], + [ + 105.271484375000057, + 11.399475098000039 + ], + [ + 105.274291992000087, + 11.401672363000046 + ], + [ + 105.277526855000076, + 11.404113770000038 + ], + [ + 105.280883789000086, + 11.406677246000072 + ], + [ + 105.283325195000089, + 11.408691406000059 + ], + [ + 105.285705566000047, + 11.411071777000075 + ], + [ + 105.289306641000053, + 11.415100098000039 + ], + [ + 105.292724609000061, + 11.419677734000061 + ], + [ + 105.295104980000076, + 11.42272949200003 + ], + [ + 105.296508789000086, + 11.425292969000054 + ], + [ + 105.292724609000061, + 11.428527832000043 + ], + [ + 105.29132080100004, + 11.432128906000059 + ], + [ + 105.290283203000058, + 11.435913086000028 + ], + [ + 105.286315918000071, + 11.437683105000076 + ], + [ + 105.284118652000075, + 11.440490723000039 + ], + [ + 105.282714844000054, + 11.443115234000061 + ], + [ + 105.284484863000046, + 11.446472168000071 + ], + [ + 105.286682129000042, + 11.449096680000025 + ], + [ + 105.284484863000046, + 11.452880859000061 + ], + [ + 105.281127930000082, + 11.455871582000043 + ], + [ + 105.277709961000085, + 11.45788574200003 + ], + [ + 105.274475098000039, + 11.455871582000043 + ], + [ + 105.272277832000043, + 11.453125 + ], + [ + 105.269897461000085, + 11.45007324200003 + ], + [ + 105.266723633000083, + 11.452514648000033 + ], + [ + 105.263916016000053, + 11.455322266000053 + ], + [ + 105.262329102000081, + 11.458129883000026 + ], + [ + 105.259094238000046, + 11.455688477000024 + ], + [ + 105.256103516000053, + 11.452697754000042 + ], + [ + 105.251892090000069, + 11.453674316000047 + ], + [ + 105.249511719000054, + 11.456298828000058 + ], + [ + 105.245483398000033, + 11.457275391000053 + ], + [ + 105.243896484000061, + 11.461486816000047 + ], + [ + 105.240295410000044, + 11.463317871000072 + ], + [ + 105.236694336000085, + 11.463500977000024 + ], + [ + 105.235290527000075, + 11.466918945000032 + ], + [ + 105.23272705100004, + 11.470092773000033 + ], + [ + 105.228881836000085, + 11.472290039000029 + ], + [ + 105.226928711000085, + 11.474670410000044 + ], + [ + 105.227905273000033, + 11.477478027000075 + ], + [ + 105.227294922000056, + 11.480712891000053 + ], + [ + 105.227722168000071, + 11.485290527000075 + ], + [ + 105.225097656000059, + 11.487915039000029 + ], + [ + 105.221130371000072, + 11.489685059000067 + ], + [ + 105.216918945000089, + 11.489501953000058 + ], + [ + 105.213684082000043, + 11.487670898000033 + ], + [ + 105.213500977000081, + 11.490905762000068 + ], + [ + 105.211914062000062, + 11.494689941000047 + ], + [ + 105.210693359000061, + 11.498718262000068 + ], + [ + 105.211486816000047, + 11.503112793000071 + ], + [ + 105.208496094000054, + 11.507080078000058 + ], + [ + 105.205322266000053, + 11.508911133000026 + ], + [ + 105.203491211000085, + 11.511901855000076 + ], + [ + 105.201721191000047, + 11.516113281000059 + ], + [ + 105.198303223000039, + 11.521118164000029 + ], + [ + 105.192871094000054, + 11.519714355000076 + ], + [ + 105.188720703000058, + 11.519470215000069 + ], + [ + 105.184692383000083, + 11.517700195000032 + ], + [ + 105.180725098000039, + 11.518310547000056 + ], + [ + 105.176879883000083, + 11.519287109000061 + ], + [ + 105.173522949000073, + 11.521911621000072 + ], + [ + 105.170715332000043, + 11.525085449000073 + ], + [ + 105.166687012000068, + 11.528503418000071 + ], + [ + 105.163513184000067, + 11.529907227000024 + ], + [ + 105.159912109000061, + 11.531311035000044 + ], + [ + 105.156127930000082, + 11.531921387000068 + ], + [ + 105.152526855000076, + 11.531127930000025 + ], + [ + 105.149719238000046, + 11.529479980000076 + ], + [ + 105.146728516000053, + 11.527282715000069 + ], + [ + 105.143127441000047, + 11.527893066000047 + ], + [ + 105.138122559000067, + 11.530090332000043 + ], + [ + 105.134704590000069, + 11.532897949000073 + ], + [ + 105.131103516000053, + 11.534118652000075 + ], + [ + 105.128112793000071, + 11.536682129000042 + ], + [ + 105.128906250000057, + 11.540710449000073 + ], + [ + 105.130126953000058, + 11.543701172000056 + ], + [ + 105.129882812000062, + 11.546691895000038 + ], + [ + 105.133911133000083, + 11.549499512000068 + ], + [ + 105.131896973000039, + 11.551879883000026 + ], + [ + 105.128906250000057, + 11.553283691000047 + ], + [ + 105.124511719000054, + 11.552490234000061 + ], + [ + 105.121520996000072, + 11.555480957000043 + ], + [ + 105.120300293000071, + 11.558715820000032 + ], + [ + 105.117126465000069, + 11.561096191000047 + ], + [ + 105.116699219000054, + 11.564270020000038 + ], + [ + 105.115112305000082, + 11.567687988000046 + ], + [ + 105.113098145000038, + 11.571899414000029 + ], + [ + 105.115295410000044, + 11.574890137000068 + ], + [ + 105.11749267600004, + 11.576904297000056 + ], + [ + 105.115295410000044, + 11.579895020000038 + ], + [ + 105.116699219000054, + 11.58428955100004 + ], + [ + 105.114685059000067, + 11.588317871000072 + ], + [ + 105.113281250000057, + 11.591125488000046 + ], + [ + 105.112304687000062, + 11.594909668000071 + ], + [ + 105.111877441000047, + 11.600097656000059 + ], + [ + 105.111328125000057, + 11.605712891000053 + ], + [ + 105.110290527000075, + 11.609313965000069 + ], + [ + 105.111877441000047, + 11.612670898000033 + ], + [ + 105.10968017600004, + 11.615112305000025 + ], + [ + 105.107299805000082, + 11.61749267600004 + ], + [ + 105.104309082000043, + 11.620117187000062 + ], + [ + 105.103515625000057, + 11.624877930000025 + ], + [ + 105.106689453000058, + 11.629516602000024 + ], + [ + 105.109497070000089, + 11.63171386700003 + ], + [ + 105.113525391000053, + 11.633911133000026 + ], + [ + 105.111877441000047, + 11.637329102000024 + ], + [ + 105.111694336000085, + 11.641113281000059 + ], + [ + 105.115112305000082, + 11.642700195000032 + ], + [ + 105.118713379000042, + 11.644470215000069 + ], + [ + 105.121704102000081, + 11.646484375000057 + ], + [ + 105.126281738000046, + 11.648315430000025 + ], + [ + 105.130493164000086, + 11.649902344000054 + ], + [ + 105.132324219000054, + 11.653076172000056 + ], + [ + 105.131530762000068, + 11.656921387000068 + ], + [ + 105.130126953000058, + 11.659729004000042 + ], + [ + 105.127502441000047, + 11.661315918000071 + ], + [ + 105.124511719000054, + 11.662475586000028 + ], + [ + 105.122497559000067, + 11.664672852000024 + ], + [ + 105.121093750000057, + 11.667297363000046 + ], + [ + 105.121887207000043, + 11.671691895000038 + ], + [ + 105.124877930000082, + 11.673706055000025 + ], + [ + 105.128112793000071, + 11.67608642600004 + ], + [ + 105.129089355000076, + 11.680114746000072 + ], + [ + 105.128906250000057, + 11.685119629000042 + ], + [ + 105.128295898000033, + 11.689086914000029 + ], + [ + 105.128723145000038, + 11.693115234000061 + ], + [ + 105.131530762000068, + 11.695922852000024 + ], + [ + 105.133911133000083, + 11.699279785000044 + ], + [ + 105.137084961000085, + 11.700927734000061 + ], + [ + 105.141296387000068, + 11.698913574000073 + ], + [ + 105.145324707000043, + 11.699096680000025 + ], + [ + 105.148071289000086, + 11.701110840000069 + ], + [ + 105.148315430000082, + 11.705688477000024 + ], + [ + 105.151306152000075, + 11.707092285000044 + ], + [ + 105.154724121000072, + 11.706726074000073 + ], + [ + 105.156921387000068, + 11.708679199000073 + ], + [ + 105.158081055000082, + 11.713073730000076 + ], + [ + 105.157897949000073, + 11.717285156000059 + ], + [ + 105.156494141000053, + 11.720886230000076 + ], + [ + 105.155090332000043, + 11.724121094000054 + ], + [ + 105.155883789000086, + 11.728271484000061 + ], + [ + 105.159729004000042, + 11.73132324200003 + ], + [ + 105.159301758000083, + 11.735473633000026 + ], + [ + 105.160888672000056, + 11.739318848000039 + ], + [ + 105.163879395000038, + 11.74249267600004 + ], + [ + 105.164489746000072, + 11.746704102000024 + ], + [ + 105.162475586000085, + 11.751892090000069 + ], + [ + 105.159118652000075, + 11.755493164000029 + ], + [ + 105.157104492000087, + 11.759704590000069 + ], + [ + 105.160705566000047, + 11.762512207000043 + ], + [ + 105.164672852000081, + 11.761901855000076 + ], + [ + 105.167907715000069, + 11.762512207000043 + ], + [ + 105.171081543000071, + 11.764709473000039 + ], + [ + 105.174072266000053, + 11.768127441000047 + ], + [ + 105.177917480000076, + 11.768310547000056 + ], + [ + 105.182128906000059, + 11.768310547000056 + ], + [ + 105.185913086000085, + 11.770874023000033 + ], + [ + 105.189086914000086, + 11.773925781000059 + ], + [ + 105.191528320000089, + 11.777282715000069 + ], + [ + 105.193298340000069, + 11.780273437000062 + ], + [ + 105.196716309000067, + 11.783081055000025 + ], + [ + 105.200500488000046, + 11.783874512000068 + ], + [ + 105.204284668000071, + 11.784484863000046 + ], + [ + 105.209106445000089, + 11.786682129000042 + ], + [ + 105.212280273000033, + 11.790527344000054 + ], + [ + 105.21710205100004, + 11.791076660000044 + ], + [ + 105.220092773000033, + 11.795471191000047 + ], + [ + 105.223510742000087, + 11.798522949000073 + ], + [ + 105.228881836000085, + 11.797912598000039 + ], + [ + 105.233093262000068, + 11.79968261700003 + ], + [ + 105.235717773000033, + 11.801330566000047 + ], + [ + 105.239074707000043, + 11.802673340000069 + ], + [ + 105.241882324000073, + 11.804870605000076 + ], + [ + 105.244079590000069, + 11.806884766000053 + ], + [ + 105.244873047000056, + 11.810119629000042 + ], + [ + 105.247314453000058, + 11.813903809000067 + ], + [ + 105.250915527000075, + 11.812072754000042 + ], + [ + 105.253723145000038, + 11.812683105000076 + ], + [ + 105.254699707000043, + 11.815673828000058 + ], + [ + 105.256530762000068, + 11.819091797000056 + ], + [ + 105.25811767600004, + 11.822326660000044 + ], + [ + 105.26007080100004, + 11.824707031000059 + ], + [ + 105.261718750000057, + 11.828674316000047 + ], + [ + 105.262878418000071, + 11.832702637000068 + ], + [ + 105.266113281000059, + 11.836120605000076 + ], + [ + 105.267272949000073, + 11.839721680000025 + ], + [ + 105.268127441000047, + 11.842529297000056 + ], + [ + 105.271484375000057, + 11.840881348000039 + ], + [ + 105.27569580100004, + 11.841125488000046 + ], + [ + 105.277282715000069, + 11.843872070000032 + ], + [ + 105.279296875000057, + 11.847473145000038 + ], + [ + 105.28350830100004, + 11.846313477000024 + ], + [ + 105.287109375000057, + 11.846130371000072 + ], + [ + 105.288513184000067, + 11.850891113000046 + ], + [ + 105.285522461000085, + 11.853515625000057 + ], + [ + 105.284301758000083, + 11.857116699000073 + ], + [ + 105.288513184000067, + 11.855895996000072 + ], + [ + 105.292114258000083, + 11.856689453000058 + ], + [ + 105.295471191000047, + 11.859130859000061 + ], + [ + 105.299499512000068, + 11.858703613000046 + ], + [ + 105.302917480000076, + 11.859924316000047 + ], + [ + 105.306518555000082, + 11.860717773000033 + ], + [ + 105.310913086000085, + 11.861694336000028 + ], + [ + 105.314697266000053, + 11.864318848000039 + ], + [ + 105.318725586000085, + 11.864685059000067 + ], + [ + 105.322082520000038, + 11.864074707000043 + ], + [ + 105.324279785000044, + 11.866516113000046 + ], + [ + 105.32647705100004, + 11.870117187000062 + ], + [ + 105.329711914000086, + 11.867919922000056 + ], + [ + 105.331481934000067, + 11.864685059000067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 6.2580564790400004, + "Shape_Area": 0.96304590438399995, + "ADM1_EN": "Pursat", + "ADM1_PCODE": "KH15", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 104.353088379000042, + 12.537292480000076 + ], + [ + 104.356689453000058, + 12.535705566000047 + ], + [ + 104.361083984000061, + 12.536926270000038 + ], + [ + 104.364074707000043, + 12.535278320000032 + ], + [ + 104.368103027000075, + 12.533325195000032 + ], + [ + 104.371520996000072, + 12.531311035000044 + ], + [ + 104.37530517600004, + 12.530883789000029 + ], + [ + 104.379882812000062, + 12.530090332000043 + ], + [ + 104.384704590000069, + 12.528503418000071 + ], + [ + 104.388122559000067, + 12.526489258000026 + ], + [ + 104.388916016000053, + 12.522277832000043 + ], + [ + 104.383728027000075, + 12.521484375000057 + ], + [ + 104.377502441000047, + 12.521911621000072 + ], + [ + 104.372924805000082, + 12.522888184000067 + ], + [ + 104.369873047000056, + 12.523925781000059 + ], + [ + 104.366088867000087, + 12.524902344000054 + ], + [ + 104.361694336000085, + 12.526672363000046 + ], + [ + 104.357482910000044, + 12.529296875000057 + ], + [ + 104.353698730000076, + 12.533081055000025 + ], + [ + 104.350280762000068, + 12.536315918000071 + ], + [ + 104.347717285000044, + 12.538085937000062 + ], + [ + 104.345886230000076, + 12.540710449000073 + ], + [ + 104.350280762000068, + 12.539489746000072 + ], + [ + 104.353088379000042, + 12.537292480000076 + ] + ] + ], + [ + [ + [ + 104.146728516000053, + 12.720092773000033 + ], + [ + 104.142700195000032, + 12.717895508000026 + ], + [ + 104.139892578000058, + 12.720886230000076 + ], + [ + 104.14288330100004, + 12.722290039000029 + ], + [ + 104.146118164000086, + 12.724670410000044 + ], + [ + 104.146728516000053, + 12.720092773000033 + ] + ] + ], + [ + [ + [ + 104.128112793000071, + 12.752075195000032 + ], + [ + 104.124694824000073, + 12.751525879000042 + ], + [ + 104.126708984000061, + 12.755493164000029 + ], + [ + 104.128112793000071, + 12.752075195000032 + ] + ] + ], + [ + [ + [ + 104.002502441000047, + 12.813476562000062 + ], + [ + 104.004699707000043, + 12.81671142600004 + ], + [ + 104.005493164000086, + 12.813476562000062 + ], + [ + 104.002502441000047, + 12.813476562000062 + ] + ] + ], + [ + [ + [ + 104.002502441000047, + 12.813476562000062 + ], + [ + 104.004882812000062, + 12.80889892600004 + ], + [ + 104.005310059000067, + 12.804504395000038 + ], + [ + 104.005920410000044, + 12.800903320000032 + ], + [ + 104.007324219000054, + 12.797302246000072 + ], + [ + 104.008300781000059, + 12.793701172000056 + ], + [ + 104.009521484000061, + 12.790100098000039 + ], + [ + 104.011291504000042, + 12.785888672000056 + ], + [ + 104.013488770000038, + 12.784118652000075 + ], + [ + 104.016296387000068, + 12.781677246000072 + ], + [ + 104.019470215000069, + 12.781677246000072 + ], + [ + 104.023315430000082, + 12.781677246000072 + ], + [ + 104.027282715000069, + 12.782714844000054 + ], + [ + 104.030273437000062, + 12.785278320000032 + ], + [ + 104.031311035000044, + 12.788879395000038 + ], + [ + 104.034118652000075, + 12.78991699200003 + ], + [ + 104.037109375000057, + 12.787292480000076 + ], + [ + 104.040893555000082, + 12.784484863000046 + ], + [ + 104.044128418000071, + 12.784118652000075 + ], + [ + 104.047729492000087, + 12.784912109000061 + ], + [ + 104.051330566000047, + 12.784484863000046 + ], + [ + 104.054504395000038, + 12.784729004000042 + ], + [ + 104.055725098000039, + 12.787902832000043 + ], + [ + 104.056884766000053, + 12.790710449000073 + ], + [ + 104.059509277000075, + 12.792297363000046 + ], + [ + 104.060485840000069, + 12.789489746000072 + ], + [ + 104.0625, + 12.785705566000047 + ], + [ + 104.066528320000032, + 12.783691406000059 + ], + [ + 104.069091797000056, + 12.785888672000056 + ], + [ + 104.070678711000085, + 12.788330078000058 + ], + [ + 104.073913574000073, + 12.790100098000039 + ], + [ + 104.075683594000054, + 12.794494629000042 + ], + [ + 104.077514648000033, + 12.797302246000072 + ], + [ + 104.079895020000038, + 12.798889160000044 + ], + [ + 104.081726074000073, + 12.801330566000047 + ], + [ + 104.080078125000057, + 12.804077148000033 + ], + [ + 104.083923340000069, + 12.806701660000044 + ], + [ + 104.085083008000083, + 12.811523437000062 + ], + [ + 104.087707520000038, + 12.816284180000025 + ], + [ + 104.088500977000081, + 12.820678711000028 + ], + [ + 104.091491699000073, + 12.822509766000053 + ], + [ + 104.093688965000069, + 12.818908691000047 + ], + [ + 104.09210205100004, + 12.816101074000073 + ], + [ + 104.09210205100004, + 12.812683105000076 + ], + [ + 104.092285156000059, + 12.808471680000025 + ], + [ + 104.090881348000039, + 12.803710937000062 + ], + [ + 104.09210205100004, + 12.80108642600004 + ], + [ + 104.095703125000057, + 12.799499512000068 + ], + [ + 104.094116211000085, + 12.796325684000067 + ], + [ + 104.092285156000059, + 12.792724609000061 + ], + [ + 104.093505859000061, + 12.790100098000039 + ], + [ + 104.095275879000042, + 12.787719727000024 + ], + [ + 104.094726562000062, + 12.78350830100004 + ], + [ + 104.098693848000039, + 12.784118652000075 + ], + [ + 104.101684570000032, + 12.781921387000068 + ], + [ + 104.104309082000043, + 12.783081055000025 + ], + [ + 104.108703613000046, + 12.784912109000061 + ], + [ + 104.113525391000053, + 12.786071777000075 + ], + [ + 104.116516113000046, + 12.785705566000047 + ], + [ + 104.120117187000062, + 12.786926270000038 + ], + [ + 104.121887207000043, + 12.78991699200003 + ], + [ + 104.126098633000083, + 12.788085937000062 + ], + [ + 104.126098633000083, + 12.784729004000042 + ], + [ + 104.123901367000087, + 12.781311035000044 + ], + [ + 104.120910645000038, + 12.780883789000029 + ], + [ + 104.121093750000057, + 12.777282715000069 + ], + [ + 104.119873047000056, + 12.774108887000068 + ], + [ + 104.118103027000075, + 12.770690918000071 + ], + [ + 104.115112305000082, + 12.766296387000068 + ], + [ + 104.113098145000038, + 12.763122559000067 + ], + [ + 104.110473633000083, + 12.760498047000056 + ], + [ + 104.109497070000032, + 12.757507324000073 + ], + [ + 104.110900879000042, + 12.754699707000043 + ], + [ + 104.108703613000046, + 12.751281738000046 + ], + [ + 104.108886719000054, + 12.747924805000025 + ], + [ + 104.112304687000062, + 12.747070312000062 + ], + [ + 104.116088867000087, + 12.746887207000043 + ], + [ + 104.114685059000067, + 12.743713379000042 + ], + [ + 104.115478516000053, + 12.739685059000067 + ], + [ + 104.119079590000069, + 12.740478516000053 + ], + [ + 104.122497559000067, + 12.743286133000026 + ], + [ + 104.126098633000083, + 12.743530273000033 + ], + [ + 104.123291016000053, + 12.739929199000073 + ], + [ + 104.122314453000058, + 12.736511230000076 + ], + [ + 104.121520996000072, + 12.73327636700003 + ], + [ + 104.121093750000057, + 12.729919434000067 + ], + [ + 104.121276855000076, + 12.726928711000028 + ], + [ + 104.122924805000082, + 12.724304199000073 + ], + [ + 104.126525879000042, + 12.725891113000046 + ], + [ + 104.125671387000068, + 12.730102539000029 + ], + [ + 104.126525879000042, + 12.733520508000026 + ], + [ + 104.128112793000071, + 12.737487793000071 + ], + [ + 104.131896973000039, + 12.737304687000062 + ], + [ + 104.135314941000047, + 12.739501953000058 + ], + [ + 104.137512207000043, + 12.743103027000075 + ], + [ + 104.139282227000081, + 12.739074707000043 + ], + [ + 104.137084961000085, + 12.735290527000075 + ], + [ + 104.133911133000083, + 12.73272705100004 + ], + [ + 104.130126953000058, + 12.729675293000071 + ], + [ + 104.132873535000044, + 12.725524902000075 + ], + [ + 104.131713867000087, + 12.721923828000058 + ], + [ + 104.130126953000058, + 12.719116211000028 + ], + [ + 104.129089355000076, + 12.71569824200003 + ], + [ + 104.127319336000085, + 12.712280273000033 + ], + [ + 104.125671387000068, + 12.709106445000032 + ], + [ + 104.124328613000046, + 12.705688477000024 + ], + [ + 104.122924805000082, + 12.702514648000033 + ], + [ + 104.121887207000043, + 12.69952392600004 + ], + [ + 104.123718262000068, + 12.695129395000038 + ], + [ + 104.126892090000069, + 12.695129395000038 + ], + [ + 104.129882812000062, + 12.694519043000071 + ], + [ + 104.133911133000083, + 12.695922852000024 + ], + [ + 104.137329102000081, + 12.697692871000072 + ], + [ + 104.140502930000082, + 12.697875977000024 + ], + [ + 104.143676758000083, + 12.696899414000029 + ], + [ + 104.145507812000062, + 12.694519043000071 + ], + [ + 104.149291992000087, + 12.692871094000054 + ], + [ + 104.152893066000047, + 12.695129395000038 + ], + [ + 104.155700684000067, + 12.691894531000059 + ], + [ + 104.154724121000072, + 12.6875 + ], + [ + 104.154296875000057, + 12.684326172000056 + ], + [ + 104.151916504000042, + 12.681884766000053 + ], + [ + 104.150878906000059, + 12.679077148000033 + ], + [ + 104.149719238000046, + 12.67608642600004 + ], + [ + 104.151916504000042, + 12.671081543000071 + ], + [ + 104.154296875000057, + 12.667480469000054 + ], + [ + 104.154479980000076, + 12.662109375000057 + ], + [ + 104.154296875000057, + 12.657714844000054 + ], + [ + 104.149719238000046, + 12.658874512000068 + ], + [ + 104.145690918000071, + 12.657470703000058 + ], + [ + 104.148071289000086, + 12.654479980000076 + ], + [ + 104.150085449000073, + 12.650512695000032 + ], + [ + 104.152526855000076, + 12.648071289000029 + ], + [ + 104.154296875000057, + 12.645690918000071 + ], + [ + 104.156494141000053, + 12.64288330100004 + ], + [ + 104.160278320000032, + 12.640686035000044 + ], + [ + 104.162902832000043, + 12.638671875000057 + ], + [ + 104.167114258000083, + 12.64093017600004 + ], + [ + 104.170471191000047, + 12.64093017600004 + ], + [ + 104.173095703000058, + 12.637695312000062 + ], + [ + 104.174072266000053, + 12.633483887000068 + ], + [ + 104.174316406000059, + 12.630126953000058 + ], + [ + 104.174072266000053, + 12.626892090000069 + ], + [ + 104.175903320000032, + 12.624511719000054 + ], + [ + 104.178283691000047, + 12.621887207000043 + ], + [ + 104.179504395000038, + 12.617919922000056 + ], + [ + 104.180297852000081, + 12.612915039000029 + ], + [ + 104.181274414000086, + 12.610107422000056 + ], + [ + 104.183471680000082, + 12.60827636700003 + ], + [ + 104.185913086000085, + 12.604309082000043 + ], + [ + 104.189270020000038, + 12.602294922000056 + ], + [ + 104.190307617000087, + 12.597717285000044 + ], + [ + 104.190917969000054, + 12.593322754000042 + ], + [ + 104.192871094000054, + 12.589477539000029 + ], + [ + 104.195495605000076, + 12.586120605000076 + ], + [ + 104.197692871000072, + 12.583496094000054 + ], + [ + 104.200317383000083, + 12.580688477000024 + ], + [ + 104.202880859000061, + 12.578674316000047 + ], + [ + 104.205322266000053, + 12.576904297000056 + ], + [ + 104.208312988000046, + 12.57452392600004 + ], + [ + 104.212524414000086, + 12.577270508000026 + ], + [ + 104.216308594000054, + 12.576904297000056 + ], + [ + 104.218505859000061, + 12.574707031000059 + ], + [ + 104.221313477000081, + 12.573486328000058 + ], + [ + 104.22491455100004, + 12.573303223000039 + ], + [ + 104.228698730000076, + 12.572509766000053 + ], + [ + 104.232910156000059, + 12.57312011700003 + ], + [ + 104.236083984000061, + 12.571716309000067 + ], + [ + 104.237915039000086, + 12.569519043000071 + ], + [ + 104.241516113000046, + 12.568115234000061 + ], + [ + 104.245483398000033, + 12.569702148000033 + ], + [ + 104.248107910000044, + 12.568115234000061 + ], + [ + 104.252685547000056, + 12.564880371000072 + ], + [ + 104.256103516000053, + 12.561523437000062 + ], + [ + 104.259094238000046, + 12.559082031000059 + ], + [ + 104.262329102000081, + 12.557922363000046 + ], + [ + 104.266906738000046, + 12.558715820000032 + ], + [ + 104.269897461000085, + 12.558471680000025 + ], + [ + 104.272277832000043, + 12.556518555000025 + ], + [ + 104.275512695000032, + 12.555908203000058 + ], + [ + 104.279724121000072, + 12.557678223000039 + ], + [ + 104.282470703000058, + 12.559509277000075 + ], + [ + 104.285095215000069, + 12.560729980000076 + ], + [ + 104.286682129000042, + 12.55749511700003 + ], + [ + 104.288879395000038, + 12.554321289000029 + ], + [ + 104.290893555000082, + 12.551513672000056 + ], + [ + 104.293701172000056, + 12.548278809000067 + ], + [ + 104.297119141000053, + 12.554321289000029 + ], + [ + 104.299682617000087, + 12.552307129000042 + ], + [ + 104.302124023000033, + 12.549072266000053 + ], + [ + 104.305297852000081, + 12.546508789000029 + ], + [ + 104.309082031000059, + 12.544311523000033 + ], + [ + 104.311889648000033, + 12.542724609000061 + ], + [ + 104.314270020000038, + 12.540710449000073 + ], + [ + 104.317321777000075, + 12.538330078000058 + ], + [ + 104.320495605000076, + 12.535278320000032 + ], + [ + 104.323486328000058, + 12.533874512000068 + ], + [ + 104.327880859000061, + 12.534729004000042 + ], + [ + 104.331481934000067, + 12.535705566000047 + ], + [ + 104.332702637000068, + 12.532897949000073 + ], + [ + 104.335876465000069, + 12.530700684000067 + ], + [ + 104.339477539000086, + 12.527893066000047 + ], + [ + 104.344909668000071, + 12.528930664000029 + ], + [ + 104.347900391000053, + 12.526916504000042 + ], + [ + 104.348693848000039, + 12.522705078000058 + ], + [ + 104.351684570000032, + 12.519714355000076 + ], + [ + 104.356079102000081, + 12.520324707000043 + ], + [ + 104.359313965000069, + 12.51788330100004 + ], + [ + 104.362670898000033, + 12.516723633000026 + ], + [ + 104.367675781000059, + 12.516113281000059 + ], + [ + 104.370117187000062, + 12.513488770000038 + ], + [ + 104.372314453000058, + 12.511291504000042 + ], + [ + 104.375488281000059, + 12.509704590000069 + ], + [ + 104.378479004000042, + 12.508300781000059 + ], + [ + 104.381896973000039, + 12.508728027000075 + ], + [ + 104.386718750000057, + 12.508483887000068 + ], + [ + 104.387084961000085, + 12.503479004000042 + ], + [ + 104.387878418000071, + 12.500671387000068 + ], + [ + 104.388916016000053, + 12.497924805000025 + ], + [ + 104.388305664000086, + 12.494873047000056 + ], + [ + 104.387512207000043, + 12.492126465000069 + ], + [ + 104.386474609000061, + 12.489318848000039 + ], + [ + 104.386901855000076, + 12.485900879000042 + ], + [ + 104.385925293000071, + 12.482116699000073 + ], + [ + 104.383300781000059, + 12.478881836000028 + ], + [ + 104.381896973000039, + 12.475280762000068 + ], + [ + 104.381103516000053, + 12.472106934000067 + ], + [ + 104.380676270000038, + 12.462280273000033 + ], + [ + 104.380676270000038, + 12.455871582000043 + ], + [ + 104.382324219000054, + 12.451721191000047 + ], + [ + 104.383483887000068, + 12.448486328000058 + ], + [ + 104.384521484000061, + 12.445129395000038 + ], + [ + 104.386474609000061, + 12.441284180000025 + ], + [ + 104.389099121000072, + 12.436706543000071 + ], + [ + 104.388305664000086, + 12.432922363000046 + ], + [ + 104.387329102000081, + 12.429504395000038 + ], + [ + 104.388122559000067, + 12.425903320000032 + ], + [ + 104.390502930000082, + 12.423278809000067 + ], + [ + 104.391906738000046, + 12.420288086000028 + ], + [ + 104.388488770000038, + 12.41827392600004 + ], + [ + 104.384887695000032, + 12.417297363000046 + ], + [ + 104.380920410000044, + 12.417114258000026 + ], + [ + 104.376281738000046, + 12.416503906000059 + ], + [ + 104.374511719000054, + 12.413696289000029 + ], + [ + 104.372497559000067, + 12.410522461000028 + ], + [ + 104.369689941000047, + 12.408081055000025 + ], + [ + 104.366088867000087, + 12.406127930000025 + ], + [ + 104.362670898000033, + 12.404113770000038 + ], + [ + 104.359924316000047, + 12.401672363000046 + ], + [ + 104.356323242000087, + 12.399902344000054 + ], + [ + 104.352478027000075, + 12.397888184000067 + ], + [ + 104.350280762000068, + 12.393493652000075 + ], + [ + 104.350280762000068, + 12.38952636700003 + ], + [ + 104.34991455100004, + 12.385498047000056 + ], + [ + 104.340087891000053, + 12.358093262000068 + ], + [ + 104.338928223000039, + 12.355285645000038 + ], + [ + 104.336486816000047, + 12.351074219000054 + ], + [ + 104.33428955100004, + 12.347473145000038 + ], + [ + 104.332092285000044, + 12.345520020000038 + ], + [ + 104.329528809000067, + 12.343078613000046 + ], + [ + 104.328125, + 12.340270996000072 + ], + [ + 104.326721191000047, + 12.337280273000033 + ], + [ + 104.324096680000082, + 12.335083008000026 + ], + [ + 104.321105957000043, + 12.333923340000069 + ], + [ + 104.318298340000069, + 12.332702637000068 + ], + [ + 104.315307617000087, + 12.331726074000073 + ], + [ + 104.314697266000053, + 12.327514648000033 + ], + [ + 104.311279297000056, + 12.326721191000047 + ], + [ + 104.307495117000087, + 12.32647705100004 + ], + [ + 104.303527832000043, + 12.326293945000032 + ], + [ + 104.300109863000046, + 12.323730469000054 + ], + [ + 104.296081543000071, + 12.322082520000038 + ], + [ + 104.292480469000054, + 12.322692871000072 + ], + [ + 104.288696289000086, + 12.322509766000053 + ], + [ + 104.285705566000047, + 12.322875977000024 + ], + [ + 104.282897949000073, + 12.321716309000067 + ], + [ + 104.279907227000081, + 12.318725586000028 + ], + [ + 104.276306152000075, + 12.31530761700003 + ], + [ + 104.272521973000039, + 12.313110352000024 + ], + [ + 104.269470215000069, + 12.309509277000075 + ], + [ + 104.266479492000087, + 12.305480957000043 + ], + [ + 104.265502930000082, + 12.301696777000075 + ], + [ + 104.263916016000053, + 12.299316406000059 + ], + [ + 104.261108398000033, + 12.298706055000025 + ], + [ + 104.257690430000082, + 12.296691895000038 + ], + [ + 104.254089355000076, + 12.295104980000076 + ], + [ + 104.25030517600004, + 12.294921875000057 + ], + [ + 104.245727539000086, + 12.295898437000062 + ], + [ + 104.24249267600004, + 12.294311523000033 + ], + [ + 104.237670898000033, + 12.292907715000069 + ], + [ + 104.233886719000054, + 12.292907715000069 + ], + [ + 104.230529785000044, + 12.29187011700003 + ], + [ + 104.227111816000047, + 12.291503906000059 + ], + [ + 104.223693848000039, + 12.29132080100004 + ], + [ + 104.220703125000057, + 12.290710449000073 + ], + [ + 104.218078613000046, + 12.288879395000038 + ], + [ + 104.215881348000039, + 12.286499023000033 + ], + [ + 104.212280273000033, + 12.284301758000026 + ], + [ + 104.209716797000056, + 12.280883789000029 + ], + [ + 104.208312988000046, + 12.277893066000047 + ], + [ + 104.204528809000067, + 12.273681641000053 + ], + [ + 104.201721191000047, + 12.270324707000043 + ], + [ + 104.199890137000068, + 12.266296387000068 + ], + [ + 104.197326660000044, + 12.264892578000058 + ], + [ + 104.194702148000033, + 12.262512207000043 + ], + [ + 104.190917969000054, + 12.259887695000032 + ], + [ + 104.188293457000043, + 12.255493164000029 + ], + [ + 104.187683105000076, + 12.252075195000032 + ], + [ + 104.185119629000042, + 12.248474121000072 + ], + [ + 104.182922363000046, + 12.244323730000076 + ], + [ + 104.180480957000043, + 12.241516113000046 + ], + [ + 104.180114746000072, + 12.237915039000029 + ], + [ + 104.178283691000047, + 12.233093262000068 + ], + [ + 104.177124023000033, + 12.226928711000028 + ], + [ + 104.176513672000056, + 12.222717285000044 + ], + [ + 104.17608642600004, + 12.219299316000047 + ], + [ + 104.175476074000073, + 12.214904785000044 + ], + [ + 104.174072266000053, + 12.209899902000075 + ], + [ + 104.173095703000058, + 12.205688477000024 + ], + [ + 104.172302246000072, + 12.201293945000032 + ], + [ + 104.173095703000058, + 12.196899414000029 + ], + [ + 104.176330566000047, + 12.194702148000033 + ], + [ + 104.174926758000083, + 12.191894531000059 + ], + [ + 104.172729492000087, + 12.189880371000072 + ], + [ + 104.171508789000086, + 12.187072754000042 + ], + [ + 104.171691895000038, + 12.182922363000046 + ], + [ + 104.171081543000071, + 12.179687500000057 + ], + [ + 104.171875, + 12.17608642600004 + ], + [ + 104.175476074000073, + 12.172912598000039 + ], + [ + 104.179321289000086, + 12.171875 + ], + [ + 104.181701660000044, + 12.169677734000061 + ], + [ + 104.183288574000073, + 12.167297363000046 + ], + [ + 104.184509277000075, + 12.163696289000029 + ], + [ + 104.184509277000075, + 12.160522461000028 + ], + [ + 104.185119629000042, + 12.156677246000072 + ], + [ + 104.185119629000042, + 12.152282715000069 + ], + [ + 104.185119629000042, + 12.147888184000067 + ], + [ + 104.186523437000062, + 12.143920898000033 + ], + [ + 104.186279297000056, + 12.140319824000073 + ], + [ + 104.185729980000076, + 12.136291504000042 + ], + [ + 104.186279297000056, + 12.132080078000058 + ], + [ + 104.186523437000062, + 12.127685547000056 + ], + [ + 104.186706543000071, + 12.123474121000072 + ], + [ + 104.186706543000071, + 12.117919922000056 + ], + [ + 104.186279297000056, + 12.113525391000053 + ], + [ + 104.186706543000071, + 12.10968017600004 + ], + [ + 104.186096191000047, + 12.105895996000072 + ], + [ + 104.190124512000068, + 12.104492187000062 + ], + [ + 104.192077637000068, + 12.102111816000047 + ], + [ + 104.194274902000075, + 12.09851074200003 + ], + [ + 104.196899414000086, + 12.095092773000033 + ], + [ + 104.196899414000086, + 12.09210205100004 + ], + [ + 104.197326660000044, + 12.088928223000039 + ], + [ + 104.198730469000054, + 12.084472656000059 + ], + [ + 104.200073242000087, + 12.080505371000072 + ], + [ + 104.199279785000044, + 12.076721191000047 + ], + [ + 104.195678711000085, + 12.074707031000059 + ], + [ + 104.192871094000054, + 12.072875977000024 + ], + [ + 104.190490723000039, + 12.070495605000076 + ], + [ + 104.188720703000058, + 12.067504883000026 + ], + [ + 104.186889648000033, + 12.063293457000043 + ], + [ + 104.185119629000042, + 12.059692383000026 + ], + [ + 104.183105469000054, + 12.055908203000058 + ], + [ + 104.181274414000086, + 12.05108642600004 + ], + [ + 104.182312012000068, + 12.045898437000062 + ], + [ + 104.182922363000046, + 12.042480469000054 + ], + [ + 104.182678223000039, + 12.039306641000053 + ], + [ + 104.180114746000072, + 12.037719727000024 + ], + [ + 104.17608642600004, + 12.038696289000029 + ], + [ + 104.172485352000081, + 12.040710449000073 + ], + [ + 104.170471191000047, + 12.043701172000056 + ], + [ + 104.167907715000069, + 12.046325684000067 + ], + [ + 104.164916992000087, + 12.048095703000058 + ], + [ + 104.160888672000056, + 12.04968261700003 + ], + [ + 104.156127930000082, + 12.049926758000026 + ], + [ + 104.152709961000085, + 12.050476074000073 + ], + [ + 104.149291992000087, + 12.050720215000069 + ], + [ + 104.146728516000053, + 12.049499512000068 + ], + [ + 104.145874023000033, + 12.046325684000067 + ], + [ + 104.143310547000056, + 12.043701172000056 + ], + [ + 104.139099121000072, + 12.042724609000061 + ], + [ + 104.134521484000061, + 12.04327392600004 + ], + [ + 104.129272461000085, + 12.045715332000043 + ], + [ + 104.125122070000032, + 12.04772949200003 + ], + [ + 104.114074707000043, + 12.047119141000053 + ], + [ + 104.111083984000061, + 12.045715332000043 + ], + [ + 104.108276367000087, + 12.042907715000069 + ], + [ + 104.105285645000038, + 12.039306641000053 + ], + [ + 104.102478027000075, + 12.037719727000024 + ], + [ + 104.095092773000033, + 12.038696289000029 + ], + [ + 104.094482422000056, + 12.035095215000069 + ], + [ + 104.095886230000076, + 12.031494141000053 + ], + [ + 104.097106934000067, + 12.026672363000046 + ], + [ + 104.097106934000067, + 12.020690918000071 + ], + [ + 104.095886230000076, + 12.016906738000046 + ], + [ + 104.095275879000042, + 12.011108398000033 + ], + [ + 104.093872070000032, + 12.00811767600004 + ], + [ + 104.092712402000075, + 12.004516602000024 + ], + [ + 104.092712402000075, + 12.001098633000026 + ], + [ + 104.091308594000054, + 11.996520996000072 + ], + [ + 104.088073730000076, + 11.990722656000059 + ], + [ + 104.089294434000067, + 11.986511230000076 + ], + [ + 104.087097168000071, + 11.981689453000058 + ], + [ + 104.081115723000039, + 11.985290527000075 + ], + [ + 104.077880859000061, + 11.98468017600004 + ], + [ + 104.074096680000082, + 11.98132324200003 + ], + [ + 104.076293945000032, + 11.976318359000061 + ], + [ + 104.072875977000081, + 11.968872070000032 + ], + [ + 104.062927246000072, + 11.969909668000071 + ], + [ + 104.057922363000046, + 11.968505859000061 + ], + [ + 104.050476074000073, + 11.955688477000024 + ], + [ + 104.054504395000038, + 11.95147705100004 + ], + [ + 104.056091309000067, + 11.947692871000072 + ], + [ + 104.058105469000054, + 11.94030761700003 + ], + [ + 104.063293457000043, + 11.927307129000042 + ], + [ + 104.062072754000042, + 11.923522949000073 + ], + [ + 104.057678223000039, + 11.920898437000062 + ], + [ + 104.052307129000042, + 11.920288086000028 + ], + [ + 104.048522949000073, + 11.921325684000067 + ], + [ + 104.043518066000047, + 11.921508789000029 + ], + [ + 104.040527344000054, + 11.91827392600004 + ], + [ + 104.037475586000085, + 11.915893555000025 + ], + [ + 104.033874512000068, + 11.914489746000072 + ], + [ + 104.029113770000038, + 11.909729004000042 + ], + [ + 104.02569580100004, + 11.907470703000058 + ], + [ + 104.022094727000081, + 11.904296875000057 + ], + [ + 104.019714355000076, + 11.901306152000075 + ], + [ + 104.015686035000044, + 11.900878906000059 + ], + [ + 104.011718750000057, + 11.901672363000046 + ], + [ + 104.007324219000054, + 11.902709961000028 + ], + [ + 104.004272461000085, + 11.903076172000056 + ], + [ + 104.001281738000046, + 11.903503418000071 + ], + [ + 103.995910645000038, + 11.902893066000047 + ], + [ + 103.991699219000054, + 11.902893066000047 + ], + [ + 103.988891602000081, + 11.905883789000029 + ], + [ + 103.988525391000053, + 11.908874512000068 + ], + [ + 103.986083984000061, + 11.911682129000042 + ], + [ + 103.984497070000032, + 11.914672852000024 + ], + [ + 103.980712891000053, + 11.921875 + ], + [ + 103.979125977000081, + 11.927490234000061 + ], + [ + 103.978515625000057, + 11.931091309000067 + ], + [ + 103.976318359000061, + 11.933471680000025 + ], + [ + 103.973693848000039, + 11.935913086000028 + ], + [ + 103.963928223000039, + 11.935729980000076 + ], + [ + 103.961914062000062, + 11.937927246000072 + ], + [ + 103.957702637000068, + 11.938476562000062 + ], + [ + 103.952087402000075, + 11.939270020000038 + ], + [ + 103.947692871000072, + 11.943481445000032 + ], + [ + 103.942871094000054, + 11.943725586000028 + ], + [ + 103.939086914000086, + 11.941894531000059 + ], + [ + 103.936279297000056, + 11.938903809000067 + ], + [ + 103.935119629000042, + 11.935729980000076 + ], + [ + 103.931884766000053, + 11.935913086000028 + ], + [ + 103.927673340000069, + 11.93389892600004 + ], + [ + 103.925109863000046, + 11.932312012000068 + ], + [ + 103.920715332000043, + 11.931884766000053 + ], + [ + 103.917907715000069, + 11.930725098000039 + ], + [ + 103.916687012000068, + 11.927673340000069 + ], + [ + 103.917114258000083, + 11.924072266000053 + ], + [ + 103.916076660000044, + 11.920471191000047 + ], + [ + 103.916687012000068, + 11.915527344000054 + ], + [ + 103.916503906000059, + 11.911682129000042 + ], + [ + 103.917114258000083, + 11.908691406000059 + ], + [ + 103.918884277000075, + 11.906494141000053 + ], + [ + 103.921325684000067, + 11.902893066000047 + ], + [ + 103.921325684000067, + 11.898681641000053 + ], + [ + 103.918701172000056, + 11.897094727000024 + ], + [ + 103.916076660000044, + 11.893920898000033 + ], + [ + 103.913879395000038, + 11.89093017600004 + ], + [ + 103.910278320000032, + 11.890319824000073 + ], + [ + 103.906127930000082, + 11.88952636700003 + ], + [ + 103.901306152000075, + 11.887878418000071 + ], + [ + 103.896484375000057, + 11.886901855000076 + ], + [ + 103.892272949000073, + 11.884887695000032 + ], + [ + 103.890075684000067, + 11.88171386700003 + ], + [ + 103.887878418000071, + 11.877929687000062 + ], + [ + 103.884277344000054, + 11.875915527000075 + ], + [ + 103.882080078000058, + 11.873291016000053 + ], + [ + 103.880126953000058, + 11.869873047000056 + ], + [ + 103.876892090000069, + 11.867309570000032 + ], + [ + 103.875122070000032, + 11.864074707000043 + ], + [ + 103.873291016000053, + 11.860717773000033 + ], + [ + 103.875488281000059, + 11.857299805000025 + ], + [ + 103.874694824000073, + 11.849304199000073 + ], + [ + 103.871887207000043, + 11.84991455100004 + ], + [ + 103.868286133000083, + 11.849670410000044 + ], + [ + 103.866088867000087, + 11.847106934000067 + ], + [ + 103.863098145000038, + 11.844299316000047 + ], + [ + 103.859924316000047, + 11.843322754000042 + ], + [ + 103.856872559000067, + 11.843505859000061 + ], + [ + 103.854675293000071, + 11.847290039000029 + ], + [ + 103.852722168000071, + 11.849487305000025 + ], + [ + 103.850280762000068, + 11.851318359000061 + ], + [ + 103.846923828000058, + 11.853698730000076 + ], + [ + 103.843322754000042, + 11.854125977000024 + ], + [ + 103.840515137000068, + 11.857482910000044 + ], + [ + 103.838317871000072, + 11.861511230000076 + ], + [ + 103.838317871000072, + 11.866699219000054 + ], + [ + 103.835876465000069, + 11.871093750000057 + ], + [ + 103.833312988000046, + 11.875488281000059 + ], + [ + 103.830871582000043, + 11.879882812000062 + ], + [ + 103.824707031000059, + 11.886291504000042 + ], + [ + 103.822326660000044, + 11.888305664000029 + ], + [ + 103.819091797000056, + 11.892517090000069 + ], + [ + 103.815307617000087, + 11.895690918000071 + ], + [ + 103.814270020000038, + 11.900512695000032 + ], + [ + 103.807678223000039, + 11.908081055000025 + ], + [ + 103.804077148000033, + 11.90850830100004 + ], + [ + 103.800720215000069, + 11.911682129000042 + ], + [ + 103.798278809000067, + 11.916076660000044 + ], + [ + 103.798278809000067, + 11.920288086000028 + ], + [ + 103.796508789000086, + 11.923706055000025 + ], + [ + 103.793701172000056, + 11.926696777000075 + ], + [ + 103.790893555000082, + 11.929321289000029 + ], + [ + 103.787475586000085, + 11.932128906000059 + ], + [ + 103.783325195000032, + 11.93249511700003 + ], + [ + 103.779907227000081, + 11.931884766000053 + ], + [ + 103.776306152000075, + 11.931701660000044 + ], + [ + 103.772521973000039, + 11.933288574000073 + ], + [ + 103.769104004000042, + 11.931884766000053 + ], + [ + 103.767272949000073, + 11.929077148000033 + ], + [ + 103.764892578000058, + 11.926513672000056 + ], + [ + 103.762084961000085, + 11.925476074000073 + ], + [ + 103.758728027000075, + 11.92608642600004 + ], + [ + 103.755676270000038, + 11.927124023000033 + ], + [ + 103.752075195000032, + 11.930114746000072 + ], + [ + 103.748474121000072, + 11.932312012000068 + ], + [ + 103.745727539000086, + 11.935729980000076 + ], + [ + 103.742675781000059, + 11.939270020000038 + ], + [ + 103.739074707000043, + 11.939086914000029 + ], + [ + 103.735473633000083, + 11.937072754000042 + ], + [ + 103.731872559000067, + 11.935302734000061 + ], + [ + 103.728515625000057, + 11.933288574000073 + ], + [ + 103.725097656000059, + 11.930114746000072 + ], + [ + 103.722473145000038, + 11.928100586000028 + ], + [ + 103.718688965000069, + 11.927673340000069 + ], + [ + 103.714721680000082, + 11.929077148000033 + ], + [ + 103.711486816000047, + 11.930908203000058 + ], + [ + 103.709106445000032, + 11.935485840000069 + ], + [ + 103.704528809000067, + 11.938110352000024 + ], + [ + 103.699890137000068, + 11.938720703000058 + ], + [ + 103.695678711000085, + 11.941101074000073 + ], + [ + 103.698120117000087, + 11.944702148000033 + ], + [ + 103.700317383000083, + 11.947875977000024 + ], + [ + 103.699890137000068, + 11.952514648000033 + ], + [ + 103.69952392600004, + 11.956726074000073 + ], + [ + 103.698486328000058, + 11.959899902000075 + ], + [ + 103.695495605000076, + 11.964294434000067 + ], + [ + 103.690917969000054, + 11.964904785000044 + ], + [ + 103.687927246000072, + 11.964477539000029 + ], + [ + 103.684326172000056, + 11.964904785000044 + ], + [ + 103.680480957000043, + 11.965270996000072 + ], + [ + 103.676513672000056, + 11.96569824200003 + ], + [ + 103.672912598000039, + 11.967285156000059 + ], + [ + 103.669677734000061, + 11.970092773000033 + ], + [ + 103.666687012000068, + 11.972106934000067 + ], + [ + 103.663330078000058, + 11.973693848000039 + ], + [ + 103.659301758000083, + 11.974670410000044 + ], + [ + 103.655273437000062, + 11.975524902000075 + ], + [ + 103.652282715000069, + 11.978881836000028 + ], + [ + 103.649902344000054, + 11.980529785000044 + ], + [ + 103.649902344000054, + 11.983520508000026 + ], + [ + 103.647277832000043, + 11.98468017600004 + ], + [ + 103.643920898000033, + 11.986083984000061 + ], + [ + 103.641113281000059, + 11.985473633000026 + ], + [ + 103.638122559000067, + 11.985290527000075 + ], + [ + 103.635681152000075, + 11.987915039000029 + ], + [ + 103.633483887000068, + 11.991882324000073 + ], + [ + 103.630920410000044, + 11.993103027000075 + ], + [ + 103.628906250000057, + 11.995483398000033 + ], + [ + 103.632690430000082, + 11.99890136700003 + ], + [ + 103.636108398000033, + 12.002929687000062 + ], + [ + 103.636901855000076, + 12.007324219000054 + ], + [ + 103.63507080100004, + 12.011291504000042 + ], + [ + 103.632873535000044, + 12.014282227000024 + ], + [ + 103.628906250000057, + 12.01593017600004 + ], + [ + 103.62530517600004, + 12.016296387000068 + ], + [ + 103.621887207000043, + 12.017700195000032 + ], + [ + 103.617309570000032, + 12.018920898000033 + ], + [ + 103.612487793000071, + 12.019470215000069 + ], + [ + 103.609130859000061, + 12.021484375000057 + ], + [ + 103.606689453000058, + 12.023498535000044 + ], + [ + 103.604492187000062, + 12.02569580100004 + ], + [ + 103.602294922000056, + 12.028686523000033 + ], + [ + 103.600708008000083, + 12.033325195000032 + ], + [ + 103.597473145000038, + 12.035522461000028 + ], + [ + 103.595275879000042, + 12.038696289000029 + ], + [ + 103.590881348000039, + 12.041076660000044 + ], + [ + 103.588684082000043, + 12.044311523000033 + ], + [ + 103.587097168000071, + 12.047119141000053 + ], + [ + 103.585693359000061, + 12.050109863000046 + ], + [ + 103.584106445000032, + 12.053100586000028 + ], + [ + 103.580322266000053, + 12.054077148000033 + ], + [ + 103.57647705100004, + 12.055908203000058 + ], + [ + 103.572692871000072, + 12.056884766000053 + ], + [ + 103.570312500000057, + 12.060302734000061 + ], + [ + 103.569274902000075, + 12.064697266000053 + ], + [ + 103.566894531000059, + 12.06671142600004 + ], + [ + 103.563293457000043, + 12.066284180000025 + ], + [ + 103.560485840000069, + 12.069702148000033 + ], + [ + 103.557678223000039, + 12.072326660000044 + ], + [ + 103.554687500000057, + 12.073486328000058 + ], + [ + 103.551696777000075, + 12.07452392600004 + ], + [ + 103.548889160000044, + 12.076110840000069 + ], + [ + 103.546691895000038, + 12.078918457000043 + ], + [ + 103.542297363000046, + 12.081481934000067 + ], + [ + 103.538513184000067, + 12.083496094000054 + ], + [ + 103.536499023000033, + 12.085693359000061 + ], + [ + 103.537719727000081, + 12.088317871000072 + ], + [ + 103.540283203000058, + 12.091308594000054 + ], + [ + 103.537902832000043, + 12.094909668000071 + ], + [ + 103.534484863000046, + 12.096496582000043 + ], + [ + 103.530273437000062, + 12.09851074200003 + ], + [ + 103.526123047000056, + 12.097900391000053 + ], + [ + 103.523071289000086, + 12.097717285000044 + ], + [ + 103.520690918000071, + 12.100524902000075 + ], + [ + 103.518127441000047, + 12.102111816000047 + ], + [ + 103.515319824000073, + 12.103515625000057 + ], + [ + 103.512512207000043, + 12.104919434000067 + ], + [ + 103.508728027000075, + 12.105895996000072 + ], + [ + 103.505126953000058, + 12.105102539000029 + ], + [ + 103.501892090000069, + 12.103881836000028 + ], + [ + 103.497497559000067, + 12.101928711000028 + ], + [ + 103.493286133000083, + 12.100097656000059 + ], + [ + 103.489685059000067, + 12.099670410000044 + ], + [ + 103.487915039000086, + 12.102478027000075 + ], + [ + 103.486511230000076, + 12.106079102000024 + ], + [ + 103.482910156000059, + 12.108520508000026 + ], + [ + 103.480529785000044, + 12.111328125000057 + ], + [ + 103.477905273000033, + 12.113708496000072 + ], + [ + 103.475524902000075, + 12.115722656000059 + ], + [ + 103.471496582000043, + 12.11608886700003 + ], + [ + 103.468505859000061, + 12.114685059000067 + ], + [ + 103.466918945000032, + 12.111328125000057 + ], + [ + 103.464111328000058, + 12.10827636700003 + ], + [ + 103.460876465000069, + 12.104675293000071 + ], + [ + 103.458923340000069, + 12.101501465000069 + ], + [ + 103.455505371000072, + 12.099670410000044 + ], + [ + 103.451110840000069, + 12.095886230000076 + ], + [ + 103.447326660000044, + 12.093872070000032 + ], + [ + 103.443481445000032, + 12.092712402000075 + ], + [ + 103.440124512000068, + 12.091918945000032 + ], + [ + 103.435913086000085, + 12.089111328000058 + ], + [ + 103.432495117000087, + 12.087280273000033 + ], + [ + 103.429504395000038, + 12.089721680000025 + ], + [ + 103.426879883000083, + 12.091125488000046 + ], + [ + 103.422485352000081, + 12.09210205100004 + ], + [ + 103.419677734000061, + 12.095520020000038 + ], + [ + 103.415710449000073, + 12.096496582000043 + ], + [ + 103.413696289000086, + 12.09991455100004 + ], + [ + 103.411071777000075, + 12.102478027000075 + ], + [ + 103.406921387000068, + 12.103271484000061 + ], + [ + 103.403320312000062, + 12.104125977000024 + ], + [ + 103.401672363000046, + 12.107482910000044 + ], + [ + 103.398925781000059, + 12.109130859000061 + ], + [ + 103.395324707000043, + 12.108886719000054 + ], + [ + 103.391723633000083, + 12.107299805000025 + ], + [ + 103.389099121000072, + 12.103271484000061 + ], + [ + 103.382080078000058, + 12.095886230000076 + ], + [ + 103.383911133000083, + 12.092529297000056 + ], + [ + 103.380920410000044, + 12.089111328000058 + ], + [ + 103.382324219000054, + 12.085083008000026 + ], + [ + 103.384887695000032, + 12.081481934000067 + ], + [ + 103.382690430000082, + 12.076293945000032 + ], + [ + 103.386474609000061, + 12.073486328000058 + ], + [ + 103.384887695000032, + 12.070495605000076 + ], + [ + 103.381103516000053, + 12.071105957000043 + ], + [ + 103.377929687000062, + 12.071472168000071 + ], + [ + 103.374084473000039, + 12.069885254000042 + ], + [ + 103.371276855000076, + 12.066284180000025 + ], + [ + 103.366699219000054, + 12.062072754000042 + ], + [ + 103.364318848000039, + 12.059692383000026 + ], + [ + 103.363891602000081, + 12.055725098000039 + ], + [ + 103.361877441000047, + 12.052124023000033 + ], + [ + 103.361328125000057, + 12.04772949200003 + ], + [ + 103.361083984000061, + 12.044311523000033 + ], + [ + 103.361328125000057, + 12.040893555000025 + ], + [ + 103.362487793000071, + 12.036926270000038 + ], + [ + 103.363281250000057, + 12.03350830100004 + ], + [ + 103.362670898000033, + 12.030517578000058 + ], + [ + 103.359497070000032, + 12.028930664000029 + ], + [ + 103.354675293000071, + 12.029113770000038 + ], + [ + 103.350524902000075, + 12.027709961000028 + ], + [ + 103.346679687000062, + 12.027526855000076 + ], + [ + 103.344909668000071, + 12.025085449000073 + ], + [ + 103.341308594000054, + 12.022277832000043 + ], + [ + 103.337097168000071, + 12.019897461000028 + ], + [ + 103.331909180000082, + 12.019104004000042 + ], + [ + 103.328918457000043, + 12.016906738000046 + ], + [ + 103.326721191000047, + 12.014099121000072 + ], + [ + 103.323303223000039, + 12.011108398000033 + ], + [ + 103.319519043000071, + 12.008728027000075 + ], + [ + 103.319274902000075, + 12.005126953000058 + ], + [ + 103.317871094000054, + 12.001281738000046 + ], + [ + 103.316528320000032, + 11.996704102000024 + ], + [ + 103.316101074000073, + 11.993530273000033 + ], + [ + 103.313903809000067, + 11.989501953000058 + ], + [ + 103.311279297000056, + 11.985900879000042 + ], + [ + 103.307312012000068, + 11.985290527000075 + ], + [ + 103.302673340000069, + 11.985290527000075 + ], + [ + 103.297729492000087, + 11.985290527000075 + ], + [ + 103.294128418000071, + 11.981689453000058 + ], + [ + 103.289306641000053, + 11.980529785000044 + ], + [ + 103.285278320000032, + 11.98327636700003 + ], + [ + 103.280700684000067, + 11.985290527000075 + ], + [ + 103.276489258000083, + 11.986877441000047 + ], + [ + 103.273071289000086, + 11.988525391000053 + ], + [ + 103.268127441000047, + 11.988525391000053 + ], + [ + 103.263305664000086, + 11.984130859000061 + ], + [ + 103.257873535000044, + 11.982910156000059 + ], + [ + 103.257080078000058, + 11.978088379000042 + ], + [ + 103.252502441000047, + 11.973876953000058 + ], + [ + 103.246520996000072, + 11.974487305000025 + ], + [ + 103.244689941000047, + 11.976684570000032 + ], + [ + 103.241271973000039, + 11.975524902000075 + ], + [ + 103.235290527000075, + 11.976684570000032 + ], + [ + 103.231323242000087, + 11.975891113000046 + ], + [ + 103.228515625000057, + 11.968872070000032 + ], + [ + 103.229492187000062, + 11.963073730000076 + ], + [ + 103.226318359000061, + 11.958496094000054 + ], + [ + 103.223083496000072, + 11.956909180000025 + ], + [ + 103.219299316000047, + 11.960327148000033 + ], + [ + 103.212280273000033, + 11.961120605000076 + ], + [ + 103.207702637000068, + 11.962707520000038 + ], + [ + 103.198730469000054, + 11.963500977000024 + ], + [ + 103.194274902000075, + 11.962097168000071 + ], + [ + 103.185119629000042, + 11.952514648000033 + ], + [ + 103.177673340000069, + 11.949707031000059 + ], + [ + 103.174316406000059, + 11.948730469000054 + ], + [ + 103.171325684000067, + 11.949707031000059 + ], + [ + 103.166503906000059, + 11.945678711000028 + ], + [ + 103.162292480000076, + 11.945495605000076 + ], + [ + 103.159729004000042, + 11.944274902000075 + ], + [ + 103.156311035000044, + 11.946899414000029 + ], + [ + 103.152526855000076, + 11.947875977000024 + ], + [ + 103.147705078000058, + 11.946716309000067 + ], + [ + 103.143493652000075, + 11.944885254000042 + ], + [ + 103.140075684000067, + 11.944274902000075 + ], + [ + 103.135498047000056, + 11.944519043000071 + ], + [ + 103.132080078000058, + 11.944885254000042 + ], + [ + 103.128479004000042, + 11.945129395000038 + ], + [ + 103.123474121000072, + 11.945312500000057 + ], + [ + 103.119873047000056, + 11.945678711000028 + ], + [ + 103.115722656000059, + 11.946716309000067 + ], + [ + 103.111877441000047, + 11.947875977000024 + ], + [ + 103.108703613000046, + 11.949096680000025 + ], + [ + 103.104492187000062, + 11.950927734000061 + ], + [ + 103.101318359000061, + 11.952270508000026 + ], + [ + 103.097106934000067, + 11.954284668000071 + ], + [ + 103.09210205100004, + 11.956909180000025 + ], + [ + 103.086914062000062, + 11.959472656000059 + ], + [ + 103.078308105000076, + 11.962280273000033 + ], + [ + 103.072326660000044, + 11.965087891000053 + ], + [ + 103.065673828000058, + 11.968078613000046 + ], + [ + 103.05889892600004, + 11.970703125000057 + ], + [ + 103.048522949000073, + 11.975280762000068 + ], + [ + 103.037475586000085, + 11.980712891000053 + ], + [ + 103.027893066000047, + 11.98468017600004 + ], + [ + 103.018676758000083, + 11.988708496000072 + ], + [ + 103.01007080100004, + 11.991699219000054 + ], + [ + 103.003723145000038, + 11.994079590000069 + ], + [ + 102.996276855000076, + 11.996887207000043 + ], + [ + 102.972717285000044, + 12.002319336000028 + ], + [ + 102.797729492000087, + 12.013488770000038 + ], + [ + 102.779724121000072, + 12.023071289000029 + ], + [ + 102.778076172000056, + 12.027099609000061 + ], + [ + 102.775878906000059, + 12.029724121000072 + ], + [ + 102.774902344000054, + 12.032470703000058 + ], + [ + 102.774108887000068, + 12.036071777000075 + ], + [ + 102.774475098000039, + 12.041503906000059 + ], + [ + 102.774108887000068, + 12.046325684000067 + ], + [ + 102.774108887000068, + 12.050292969000054 + ], + [ + 102.774108887000068, + 12.054504395000038 + ], + [ + 102.772277832000043, + 12.059509277000075 + ], + [ + 102.770080566000047, + 12.063903809000067 + ], + [ + 102.770690918000071, + 12.069091797000056 + ], + [ + 102.771118164000086, + 12.072326660000044 + ], + [ + 102.768676758000083, + 12.075317383000026 + ], + [ + 102.764709473000039, + 12.076293945000032 + ], + [ + 102.760925293000071, + 12.079528809000067 + ], + [ + 102.75811767600004, + 12.081115723000039 + ], + [ + 102.756286621000072, + 12.085083008000026 + ], + [ + 102.754882812000062, + 12.089477539000029 + ], + [ + 102.752075195000032, + 12.093872070000032 + ], + [ + 102.747924805000082, + 12.096130371000072 + ], + [ + 102.745300293000071, + 12.098693848000039 + ], + [ + 102.743103027000075, + 12.101074219000054 + ], + [ + 102.740478516000053, + 12.104125977000024 + ], + [ + 102.737121582000043, + 12.107299805000025 + ], + [ + 102.734497070000032, + 12.110900879000042 + ], + [ + 102.733886719000054, + 12.115112305000025 + ], + [ + 102.733703613000046, + 12.119689941000047 + ], + [ + 102.732482910000044, + 12.124328613000046 + ], + [ + 102.730529785000044, + 12.127502441000047 + ], + [ + 102.728698730000076, + 12.130676270000038 + ], + [ + 102.725524902000075, + 12.131286621000072 + ], + [ + 102.721313477000081, + 12.134277344000054 + ], + [ + 102.717712402000075, + 12.13952636700003 + ], + [ + 102.716125488000046, + 12.143676758000026 + ], + [ + 102.713500977000081, + 12.146911621000072 + ], + [ + 102.711914062000062, + 12.149475098000039 + ], + [ + 102.709899902000075, + 12.153076172000056 + ], + [ + 102.709106445000032, + 12.156921387000068 + ], + [ + 102.70928955100004, + 12.160705566000047 + ], + [ + 102.708923340000069, + 12.166076660000044 + ], + [ + 102.706298828000058, + 12.169677734000061 + ], + [ + 102.704528809000067, + 12.174316406000059 + ], + [ + 102.705322266000053, + 12.177673340000069 + ], + [ + 102.705505371000072, + 12.180908203000058 + ], + [ + 102.706726074000073, + 12.184082031000059 + ], + [ + 102.708129883000083, + 12.187683105000076 + ], + [ + 102.710693359000061, + 12.19171142600004 + ], + [ + 102.712280273000033, + 12.195922852000024 + ], + [ + 102.710693359000061, + 12.199096680000025 + ], + [ + 102.709106445000032, + 12.202514648000033 + ], + [ + 102.708679199000073, + 12.205505371000072 + ], + [ + 102.710083008000083, + 12.209106445000032 + ], + [ + 102.710876465000069, + 12.211914062000062 + ], + [ + 102.711730957000043, + 12.215087891000053 + ], + [ + 102.712524414000086, + 12.217895508000026 + ], + [ + 102.714111328000058, + 12.221130371000072 + ], + [ + 102.717712402000075, + 12.221313477000024 + ], + [ + 102.718505859000061, + 12.225524902000075 + ], + [ + 102.718505859000061, + 12.229492187000062 + ], + [ + 102.718322754000042, + 12.232910156000059 + ], + [ + 102.718505859000061, + 12.238098145000038 + ], + [ + 102.718505859000061, + 12.242919922000056 + ], + [ + 102.718322754000042, + 12.247680664000029 + ], + [ + 102.716674805000082, + 12.251708984000061 + ], + [ + 102.715270996000072, + 12.254882812000062 + ], + [ + 102.713928223000039, + 12.259521484000061 + ], + [ + 102.714111328000058, + 12.264282227000024 + ], + [ + 102.715698242000087, + 12.267089844000054 + ], + [ + 102.717712402000075, + 12.270874023000033 + ], + [ + 102.718872070000032, + 12.27429199200003 + ], + [ + 102.719482422000056, + 12.277282715000069 + ], + [ + 102.720092773000033, + 12.280883789000029 + ], + [ + 102.722290039000086, + 12.283874512000068 + ], + [ + 102.723083496000072, + 12.287292480000076 + ], + [ + 102.723693848000039, + 12.290893555000025 + ], + [ + 102.724487305000082, + 12.294311523000033 + ], + [ + 102.725524902000075, + 12.299499512000068 + ], + [ + 102.725891113000046, + 12.305114746000072 + ], + [ + 102.726074219000054, + 12.309875488000046 + ], + [ + 102.725891113000046, + 12.313903809000067 + ], + [ + 102.725524902000075, + 12.318908691000047 + ], + [ + 102.726318359000061, + 12.322326660000044 + ], + [ + 102.726318359000061, + 12.326110840000069 + ], + [ + 102.725280762000068, + 12.330322266000053 + ], + [ + 102.723510742000087, + 12.334106445000032 + ], + [ + 102.724304199000073, + 12.337097168000071 + ], + [ + 102.725280762000068, + 12.340515137000068 + ], + [ + 102.724304199000073, + 12.344299316000047 + ], + [ + 102.724121094000054, + 12.349304199000073 + ], + [ + 102.724121094000054, + 12.353698730000076 + ], + [ + 102.725097656000059, + 12.358703613000046 + ], + [ + 102.725708008000083, + 12.363708496000072 + ], + [ + 102.727905273000033, + 12.366699219000054 + ], + [ + 102.730712891000053, + 12.369323730000076 + ], + [ + 102.733093262000068, + 12.373107910000044 + ], + [ + 102.735473633000083, + 12.375915527000075 + ], + [ + 102.738525391000053, + 12.377929687000062 + ], + [ + 102.740478516000053, + 12.38171386700003 + ], + [ + 102.74249267600004, + 12.386474609000061 + ], + [ + 102.746093750000057, + 12.388916016000053 + ], + [ + 102.75030517600004, + 12.391113281000059 + ], + [ + 102.755676270000038, + 12.392700195000032 + ], + [ + 102.761108398000033, + 12.394104004000042 + ], + [ + 102.765686035000044, + 12.393676758000026 + ], + [ + 102.769104004000042, + 12.394104004000042 + ], + [ + 102.772094727000081, + 12.394104004000042 + ], + [ + 102.775512695000032, + 12.396911621000072 + ], + [ + 102.778503418000071, + 12.399719238000046 + ], + [ + 102.781311035000044, + 12.400329590000069 + ], + [ + 102.784912109000061, + 12.400329590000069 + ], + [ + 102.788085937000062, + 12.396728516000053 + ], + [ + 102.79132080100004, + 12.392272949000073 + ], + [ + 102.794494629000042, + 12.387878418000071 + ], + [ + 102.795898437000062, + 12.384277344000054 + ], + [ + 102.797729492000087, + 12.381103516000053 + ], + [ + 102.80108642600004, + 12.378112793000071 + ], + [ + 102.804687500000057, + 12.375671387000068 + ], + [ + 102.807922363000046, + 12.374328613000046 + ], + [ + 102.809509277000075, + 12.371520996000072 + ], + [ + 102.812316895000038, + 12.372924805000025 + ], + [ + 102.815307617000087, + 12.376098633000026 + ], + [ + 102.818908691000047, + 12.376892090000069 + ], + [ + 102.819519043000071, + 12.381286621000072 + ], + [ + 102.817504883000083, + 12.385681152000075 + ], + [ + 102.818908691000047, + 12.388488770000038 + ], + [ + 102.820495605000076, + 12.392700195000032 + ], + [ + 102.823913574000073, + 12.395690918000071 + ], + [ + 102.826293945000032, + 12.397521973000039 + ], + [ + 102.826904297000056, + 12.40069580100004 + ], + [ + 102.829711914000086, + 12.403503418000071 + ], + [ + 102.832092285000044, + 12.405517578000058 + ], + [ + 102.834472656000059, + 12.408081055000025 + ], + [ + 102.836120605000076, + 12.411682129000042 + ], + [ + 102.840515137000068, + 12.411499023000033 + ], + [ + 102.843872070000032, + 12.409118652000075 + ], + [ + 102.847473145000038, + 12.409118652000075 + ], + [ + 102.851318359000061, + 12.40710449200003 + ], + [ + 102.853088379000042, + 12.403686523000033 + ], + [ + 102.856872559000067, + 12.403320312000062 + ], + [ + 102.860473633000083, + 12.401916504000042 + ], + [ + 102.864074707000043, + 12.40069580100004 + ], + [ + 102.866699219000054, + 12.39929199200003 + ], + [ + 102.870483398000033, + 12.397521973000039 + ], + [ + 102.873474121000072, + 12.398315430000025 + ], + [ + 102.873718262000068, + 12.401672363000046 + ], + [ + 102.875488281000059, + 12.403930664000029 + ], + [ + 102.877075195000032, + 12.40710449200003 + ], + [ + 102.881530762000068, + 12.407897949000073 + ], + [ + 102.88311767600004, + 12.412292480000076 + ], + [ + 102.887512207000043, + 12.413879395000038 + ], + [ + 102.889892578000058, + 12.41687011700003 + ], + [ + 102.891723633000083, + 12.419311523000033 + ], + [ + 102.894470215000069, + 12.420715332000043 + ], + [ + 102.897277832000043, + 12.424072266000053 + ], + [ + 102.901123047000056, + 12.428527832000043 + ], + [ + 102.903076172000056, + 12.432128906000059 + ], + [ + 102.906677246000072, + 12.433288574000073 + ], + [ + 102.909484863000046, + 12.431091309000067 + ], + [ + 102.912475586000085, + 12.428894043000071 + ], + [ + 102.915710449000073, + 12.430908203000058 + ], + [ + 102.918701172000056, + 12.430725098000039 + ], + [ + 102.921081543000071, + 12.432312012000068 + ], + [ + 102.924072266000053, + 12.434509277000075 + ], + [ + 102.928100586000085, + 12.432922363000046 + ], + [ + 102.931701660000044, + 12.432312012000068 + ], + [ + 102.935302734000061, + 12.432678223000039 + ], + [ + 102.938720703000058, + 12.431274414000029 + ], + [ + 102.942687988000046, + 12.431518555000025 + ], + [ + 102.947082520000038, + 12.433288574000073 + ], + [ + 102.950683594000054, + 12.436889648000033 + ], + [ + 102.951293945000032, + 12.440673828000058 + ], + [ + 102.954895020000038, + 12.442871094000054 + ], + [ + 102.959472656000059, + 12.444091797000056 + ], + [ + 102.962280273000033, + 12.445922852000024 + ], + [ + 102.965515137000068, + 12.446899414000029 + ], + [ + 102.968872070000032, + 12.44812011700003 + ], + [ + 102.971923828000058, + 12.44952392600004 + ], + [ + 102.974670410000044, + 12.450927734000061 + ], + [ + 102.973876953000058, + 12.454101562000062 + ], + [ + 102.973693848000039, + 12.457702637000068 + ], + [ + 102.976074219000054, + 12.461486816000047 + ], + [ + 102.978881836000085, + 12.466125488000046 + ], + [ + 102.980712891000053, + 12.468872070000032 + ], + [ + 102.982299805000082, + 12.472290039000029 + ], + [ + 102.985473633000083, + 12.474670410000044 + ], + [ + 102.986877441000047, + 12.477294922000056 + ], + [ + 102.988891602000081, + 12.479492187000062 + ], + [ + 102.99249267600004, + 12.481506348000039 + ], + [ + 102.995727539000086, + 12.48468017600004 + ], + [ + 102.998901367000087, + 12.48468017600004 + ], + [ + 103.000671387000068, + 12.482116699000073 + ], + [ + 103.002502441000047, + 12.479492187000062 + ], + [ + 103.006286621000072, + 12.477722168000071 + ], + [ + 103.008483887000068, + 12.474670410000044 + ], + [ + 103.008911133000083, + 12.471130371000072 + ], + [ + 103.010925293000071, + 12.46710205100004 + ], + [ + 103.014526367000087, + 12.462524414000029 + ], + [ + 103.017700195000032, + 12.458496094000054 + ], + [ + 103.019897461000085, + 12.454284668000071 + ], + [ + 103.020690918000071, + 12.450317383000026 + ], + [ + 103.022521973000039, + 12.447509766000053 + ], + [ + 103.027282715000069, + 12.447082520000038 + ], + [ + 103.030517578000058, + 12.445312500000057 + ], + [ + 103.033325195000032, + 12.443725586000028 + ], + [ + 103.037475586000085, + 12.443481445000032 + ], + [ + 103.042724609000061, + 12.442871094000054 + ], + [ + 103.046325684000067, + 12.442077637000068 + ], + [ + 103.048889160000044, + 12.440673828000058 + ], + [ + 103.053527832000043, + 12.439086914000029 + ], + [ + 103.057922363000046, + 12.438476562000062 + ], + [ + 103.061889648000033, + 12.438476562000062 + ], + [ + 103.06671142600004, + 12.4375 + ], + [ + 103.071105957000043, + 12.440124512000068 + ], + [ + 103.071716309000067, + 12.444702148000033 + ], + [ + 103.071289062000062, + 12.45147705100004 + ], + [ + 103.070678711000085, + 12.456298828000058 + ], + [ + 103.072326660000044, + 12.459716797000056 + ], + [ + 103.07647705100004, + 12.460327148000033 + ], + [ + 103.079711914000086, + 12.462524414000029 + ], + [ + 103.083129883000083, + 12.464477539000029 + ], + [ + 103.087280273000033, + 12.464721680000025 + ], + [ + 103.090881348000039, + 12.464111328000058 + ], + [ + 103.094726562000062, + 12.462707520000038 + ], + [ + 103.099121094000054, + 12.463684082000043 + ], + [ + 103.103271484000061, + 12.463684082000043 + ], + [ + 103.105285645000038, + 12.468078613000046 + ], + [ + 103.114318848000039, + 12.47351074200003 + ], + [ + 103.128295898000033, + 12.48272705100004 + ], + [ + 103.132690430000082, + 12.48327636700003 + ], + [ + 103.135925293000071, + 12.484924316000047 + ], + [ + 103.136718750000057, + 12.488708496000072 + ], + [ + 103.140686035000044, + 12.489501953000058 + ], + [ + 103.144470215000069, + 12.488098145000038 + ], + [ + 103.146911621000072, + 12.486328125000057 + ], + [ + 103.149719238000046, + 12.484497070000032 + ], + [ + 103.152526855000076, + 12.48272705100004 + ], + [ + 103.155700684000067, + 12.48132324200003 + ], + [ + 103.159729004000042, + 12.48132324200003 + ], + [ + 103.162719727000081, + 12.483886719000054 + ], + [ + 103.164916992000087, + 12.486877441000047 + ], + [ + 103.166687012000068, + 12.489685059000067 + ], + [ + 103.169311523000033, + 12.492919922000056 + ], + [ + 103.172485352000081, + 12.495300293000071 + ], + [ + 103.175903320000032, + 12.497924805000025 + ], + [ + 103.179687500000057, + 12.502319336000028 + ], + [ + 103.182922363000046, + 12.504882812000062 + ], + [ + 103.186706543000071, + 12.50671386700003 + ], + [ + 103.192077637000068, + 12.508300781000059 + ], + [ + 103.196289062000062, + 12.509094238000046 + ], + [ + 103.200317383000083, + 12.509887695000032 + ], + [ + 103.204101562000062, + 12.510498047000056 + ], + [ + 103.207092285000044, + 12.511291504000042 + ], + [ + 103.209472656000059, + 12.512878418000071 + ], + [ + 103.211730957000043, + 12.515075684000067 + ], + [ + 103.214721680000082, + 12.518127441000047 + ], + [ + 103.217285156000059, + 12.520507812000062 + ], + [ + 103.219909668000071, + 12.522521973000039 + ], + [ + 103.223083496000072, + 12.524902344000054 + ], + [ + 103.227111816000047, + 12.526489258000026 + ], + [ + 103.230895996000072, + 12.526489258000026 + ], + [ + 103.234497070000032, + 12.52569580100004 + ], + [ + 103.238098145000038, + 12.52429199200003 + ], + [ + 103.240478516000053, + 12.522094727000024 + ], + [ + 103.243713379000042, + 12.520507812000062 + ], + [ + 103.248107910000044, + 12.519714355000076 + ], + [ + 103.251281738000046, + 12.521728516000053 + ], + [ + 103.253295898000033, + 12.525329590000069 + ], + [ + 103.255493164000086, + 12.528503418000071 + ], + [ + 103.258728027000075, + 12.530090332000043 + ], + [ + 103.261718750000057, + 12.530883789000029 + ], + [ + 103.264526367000087, + 12.531677246000072 + ], + [ + 103.268310547000056, + 12.534118652000075 + ], + [ + 103.269897461000085, + 12.537719727000024 + ], + [ + 103.271484375000057, + 12.540893555000025 + ], + [ + 103.274475098000039, + 12.542907715000069 + ], + [ + 103.278076172000056, + 12.54327392600004 + ], + [ + 103.281311035000044, + 12.542907715000069 + ], + [ + 103.28350830100004, + 12.547485352000024 + ], + [ + 103.285888672000056, + 12.54968261700003 + ], + [ + 103.289489746000072, + 12.549926758000026 + ], + [ + 103.293884277000075, + 12.548889160000044 + ], + [ + 103.297485352000081, + 12.547302246000072 + ], + [ + 103.301879883000083, + 12.546081543000071 + ], + [ + 103.303710937000062, + 12.550292969000054 + ], + [ + 103.302917480000076, + 12.554504395000038 + ], + [ + 103.303527832000043, + 12.558471680000025 + ], + [ + 103.307312012000068, + 12.560302734000061 + ], + [ + 103.311279297000056, + 12.560729980000076 + ], + [ + 103.314514160000044, + 12.558715820000032 + ], + [ + 103.318908691000047, + 12.560119629000042 + ], + [ + 103.322692871000072, + 12.559326172000056 + ], + [ + 103.327697754000042, + 12.560485840000069 + ], + [ + 103.325927734000061, + 12.562683105000076 + ], + [ + 103.324707031000059, + 12.56671142600004 + ], + [ + 103.327880859000061, + 12.567687988000046 + ], + [ + 103.331481934000067, + 12.566894531000059 + ], + [ + 103.334472656000059, + 12.566284180000025 + ], + [ + 103.337524414000086, + 12.565673828000058 + ], + [ + 103.341918945000032, + 12.564514160000044 + ], + [ + 103.346496582000043, + 12.563293457000043 + ], + [ + 103.352111816000047, + 12.561889648000033 + ], + [ + 103.356323242000087, + 12.561096191000047 + ], + [ + 103.360107422000056, + 12.560302734000061 + ], + [ + 103.360900879000042, + 12.557128906000059 + ], + [ + 103.361877441000047, + 12.552307129000042 + ], + [ + 103.365295410000044, + 12.551330566000047 + ], + [ + 103.369689941000047, + 12.550476074000073 + ], + [ + 103.373291016000053, + 12.550903320000032 + ], + [ + 103.377502441000047, + 12.553894043000071 + ], + [ + 103.381713867000087, + 12.557128906000059 + ], + [ + 103.385681152000075, + 12.557922363000046 + ], + [ + 103.388916016000053, + 12.557922363000046 + ], + [ + 103.393127441000047, + 12.559692383000026 + ], + [ + 103.396484375000057, + 12.55889892600004 + ], + [ + 103.399719238000046, + 12.558105469000054 + ], + [ + 103.404296875000057, + 12.556518555000025 + ], + [ + 103.407897949000073, + 12.554321289000029 + ], + [ + 103.411315918000071, + 12.552124023000033 + ], + [ + 103.414489746000072, + 12.550903320000032 + ], + [ + 103.417480469000054, + 12.54968261700003 + ], + [ + 103.422485352000081, + 12.547119141000053 + ], + [ + 103.427124023000033, + 12.545715332000043 + ], + [ + 103.431518555000082, + 12.543884277000075 + ], + [ + 103.436096191000047, + 12.54187011700003 + ], + [ + 103.440917969000054, + 12.539306641000053 + ], + [ + 103.443908691000047, + 12.539489746000072 + ], + [ + 103.446716309000067, + 12.538330078000058 + ], + [ + 103.449890137000068, + 12.537902832000043 + ], + [ + 103.454895020000038, + 12.536926270000038 + ], + [ + 103.458679199000073, + 12.535522461000028 + ], + [ + 103.461303711000085, + 12.533691406000059 + ], + [ + 103.463073730000076, + 12.531127930000025 + ], + [ + 103.465515137000068, + 12.528503418000071 + ], + [ + 103.468505859000061, + 12.526306152000075 + ], + [ + 103.472106934000067, + 12.524902344000054 + ], + [ + 103.477478027000075, + 12.521728516000053 + ], + [ + 103.483276367000087, + 12.518127441000047 + ], + [ + 103.486328125000057, + 12.514709473000039 + ], + [ + 103.489501953000058, + 12.513671875000057 + ], + [ + 103.492126465000069, + 12.512084961000028 + ], + [ + 103.497070312000062, + 12.510498047000056 + ], + [ + 103.50030517600004, + 12.508728027000075 + ], + [ + 103.503112793000071, + 12.507324219000054 + ], + [ + 103.506713867000087, + 12.505676270000038 + ], + [ + 103.509521484000061, + 12.504882812000062 + ], + [ + 103.513916016000053, + 12.504272461000028 + ], + [ + 103.519714355000076, + 12.504516602000024 + ], + [ + 103.524719238000046, + 12.505310059000067 + ], + [ + 103.539306641000053, + 12.513671875000057 + ], + [ + 103.545715332000043, + 12.514892578000058 + ], + [ + 103.562683105000076, + 12.521118164000029 + ], + [ + 103.575927734000061, + 12.521911621000072 + ], + [ + 103.581909180000082, + 12.522277832000043 + ], + [ + 103.587524414000086, + 12.523071289000029 + ], + [ + 103.592895508000083, + 12.523071289000029 + ], + [ + 103.597717285000044, + 12.522705078000058 + ], + [ + 103.602478027000075, + 12.522888184000067 + ], + [ + 103.608703613000046, + 12.524719238000046 + ], + [ + 103.611328125000057, + 12.527282715000069 + ], + [ + 103.612670898000033, + 12.530700684000067 + ], + [ + 103.614929199000073, + 12.53350830100004 + ], + [ + 103.614501953000058, + 12.536682129000042 + ], + [ + 103.615478516000053, + 12.540100098000039 + ], + [ + 103.618530273000033, + 12.541687012000068 + ], + [ + 103.619689941000047, + 12.545104980000076 + ], + [ + 103.621093750000057, + 12.549316406000059 + ], + [ + 103.622497559000067, + 12.552917480000076 + ], + [ + 103.623291016000053, + 12.555908203000058 + ], + [ + 103.622680664000086, + 12.560119629000042 + ], + [ + 103.626281738000046, + 12.5625 + ], + [ + 103.630493164000086, + 12.563476562000062 + ], + [ + 103.634277344000054, + 12.56671142600004 + ], + [ + 103.633911133000083, + 12.570312500000057 + ], + [ + 103.637329102000081, + 12.574096680000025 + ], + [ + 103.64093017600004, + 12.575317383000026 + ], + [ + 103.642517090000069, + 12.578125 + ], + [ + 103.641113281000059, + 12.582702637000068 + ], + [ + 103.638671875000057, + 12.587097168000071 + ], + [ + 103.637878418000071, + 12.590270996000072 + ], + [ + 103.634277344000054, + 12.591918945000032 + ], + [ + 103.632690430000082, + 12.595886230000076 + ], + [ + 103.634521484000061, + 12.599304199000073 + ], + [ + 103.636474609000061, + 12.602905273000033 + ], + [ + 103.639892578000058, + 12.604675293000071 + ], + [ + 103.640502930000082, + 12.608093262000068 + ], + [ + 103.638122559000067, + 12.610900879000042 + ], + [ + 103.635681152000075, + 12.613098145000038 + ], + [ + 103.635498047000056, + 12.616271973000039 + ], + [ + 103.635498047000056, + 12.619506836000028 + ], + [ + 103.636291504000042, + 12.622497559000067 + ], + [ + 103.636474609000061, + 12.625915527000075 + ], + [ + 103.636901855000076, + 12.629516602000024 + ], + [ + 103.639892578000058, + 12.630493164000029 + ], + [ + 103.638671875000057, + 12.63311767600004 + ], + [ + 103.641296387000068, + 12.63507080100004 + ], + [ + 103.645324707000043, + 12.637329102000024 + ], + [ + 103.648498535000044, + 12.63952636700003 + ], + [ + 103.648315430000082, + 12.643920898000033 + ], + [ + 103.646118164000086, + 12.647888184000067 + ], + [ + 103.645690918000071, + 12.651123047000056 + ], + [ + 103.645324707000043, + 12.655273437000062 + ], + [ + 103.644470215000069, + 12.659301758000026 + ], + [ + 103.645080566000047, + 12.663330078000058 + ], + [ + 103.642089844000054, + 12.666503906000059 + ], + [ + 103.639526367000087, + 12.664489746000072 + ], + [ + 103.619323730000076, + 12.677124023000033 + ], + [ + 103.635498047000056, + 12.699890137000068 + ], + [ + 103.63507080100004, + 12.703918457000043 + ], + [ + 103.634521484000061, + 12.70788574200003 + ], + [ + 103.631286621000072, + 12.710083008000026 + ], + [ + 103.630676270000038, + 12.714904785000044 + ], + [ + 103.626525879000042, + 12.717712402000075 + ], + [ + 103.623718262000068, + 12.721130371000072 + ], + [ + 103.623474121000072, + 12.724487305000025 + ], + [ + 103.624328613000046, + 12.729919434000067 + ], + [ + 103.623474121000072, + 12.734497070000032 + ], + [ + 103.623291016000053, + 12.737487793000071 + ], + [ + 103.621093750000057, + 12.741516113000046 + ], + [ + 103.621093750000057, + 12.745300293000071 + ], + [ + 103.619873047000056, + 12.748107910000044 + ], + [ + 103.621093750000057, + 12.751708984000061 + ], + [ + 103.622924805000082, + 12.755493164000029 + ], + [ + 103.621276855000076, + 12.76007080100004 + ], + [ + 103.620117187000062, + 12.762695312000062 + ], + [ + 103.622680664000086, + 12.763916016000053 + ], + [ + 103.619873047000056, + 12.766296387000068 + ], + [ + 103.622314453000058, + 12.770080566000047 + ], + [ + 103.623718262000068, + 12.774108887000068 + ], + [ + 103.623107910000044, + 12.777709961000028 + ], + [ + 103.625671387000068, + 12.780273437000062 + ], + [ + 103.629516602000081, + 12.784118652000075 + ], + [ + 103.63311767600004, + 12.786071777000075 + ], + [ + 103.633728027000075, + 12.790527344000054 + ], + [ + 103.635314941000047, + 12.794921875000057 + ], + [ + 103.63507080100004, + 12.799316406000059 + ], + [ + 103.636474609000061, + 12.803283691000047 + ], + [ + 103.639099121000072, + 12.805480957000043 + ], + [ + 103.641479492000087, + 12.809082031000059 + ], + [ + 103.643920898000033, + 12.812683105000076 + ], + [ + 103.644470215000069, + 12.816284180000025 + ], + [ + 103.642517090000069, + 12.820495605000076 + ], + [ + 103.638305664000086, + 12.821899414000029 + ], + [ + 103.635498047000056, + 12.822875977000024 + ], + [ + 103.632324219000054, + 12.82312011700003 + ], + [ + 103.631530762000068, + 12.825927734000061 + ], + [ + 103.631713867000087, + 12.828918457000043 + ], + [ + 103.629882812000062, + 12.832519531000059 + ], + [ + 103.631103516000053, + 12.835876465000069 + ], + [ + 103.633300781000059, + 12.84069824200003 + ], + [ + 103.633300781000059, + 12.845092773000033 + ], + [ + 103.636901855000076, + 12.848693848000039 + ], + [ + 103.639892578000058, + 12.852111816000047 + ], + [ + 103.643493652000075, + 12.854492187000062 + ], + [ + 103.648315430000082, + 12.855895996000072 + ], + [ + 103.652709961000085, + 12.856689453000058 + ], + [ + 103.655517578000058, + 12.859130859000061 + ], + [ + 103.660095215000069, + 12.860900879000042 + ], + [ + 103.664306641000053, + 12.862487793000071 + ], + [ + 103.668518066000047, + 12.863525391000053 + ], + [ + 103.674316406000059, + 12.863281250000057 + ], + [ + 103.679687500000057, + 12.862304687000062 + ], + [ + 103.683105469000054, + 12.862487793000071 + ], + [ + 103.685913086000085, + 12.864318848000039 + ], + [ + 103.688903809000067, + 12.863281250000057 + ], + [ + 103.691528320000032, + 12.865722656000059 + ], + [ + 103.694519043000071, + 12.869506836000028 + ], + [ + 103.696472168000071, + 12.874694824000073 + ], + [ + 103.697326660000044, + 12.879089355000076 + ], + [ + 103.696105957000043, + 12.883911133000026 + ], + [ + 103.696472168000071, + 12.887329102000024 + ], + [ + 103.697692871000072, + 12.891296387000068 + ], + [ + 103.695922852000081, + 12.895690918000071 + ], + [ + 103.697509766000053, + 12.89929199200003 + ], + [ + 103.700927734000061, + 12.901672363000046 + ], + [ + 103.701110840000069, + 12.904724121000072 + ], + [ + 103.700683594000054, + 12.90850830100004 + ], + [ + 103.702087402000075, + 12.911926270000038 + ], + [ + 103.701110840000069, + 12.91491699200003 + ], + [ + 103.703308105000076, + 12.91687011700003 + ], + [ + 103.705505371000072, + 12.919311523000033 + ], + [ + 103.708679199000073, + 12.920898437000062 + ], + [ + 103.710876465000069, + 12.923278809000067 + ], + [ + 103.712280273000033, + 12.926330566000047 + ], + [ + 103.717285156000059, + 12.927490234000061 + ], + [ + 103.721679687000062, + 12.927917480000076 + ], + [ + 103.724487305000082, + 12.929504395000038 + ], + [ + 103.729309082000043, + 12.929077148000033 + ], + [ + 103.732116699000073, + 12.932678223000039 + ], + [ + 103.732910156000059, + 12.936096191000047 + ], + [ + 103.732116699000073, + 12.940124512000068 + ], + [ + 103.730895996000072, + 12.943908691000047 + ], + [ + 103.729309082000043, + 12.94812011700003 + ], + [ + 103.72491455100004, + 12.94952392600004 + ], + [ + 103.722290039000086, + 12.950683594000054 + ], + [ + 103.720520020000038, + 12.952880859000061 + ], + [ + 103.718872070000032, + 12.957702637000068 + ], + [ + 103.718078613000046, + 12.962707520000038 + ], + [ + 103.718872070000032, + 12.967712402000075 + ], + [ + 103.718322754000042, + 12.970886230000076 + ], + [ + 103.718872070000032, + 12.974121094000054 + ], + [ + 103.722290039000086, + 12.976318359000061 + ], + [ + 103.725524902000075, + 12.978881836000028 + ], + [ + 103.727478027000075, + 12.982116699000073 + ], + [ + 103.730529785000044, + 12.984313965000069 + ], + [ + 103.731079102000081, + 12.987487793000071 + ], + [ + 103.731323242000087, + 12.992309570000032 + ], + [ + 103.732116699000073, + 12.995117187000062 + ], + [ + 103.735473633000083, + 12.997314453000058 + ], + [ + 103.738891602000081, + 12.999511719000054 + ], + [ + 103.740112305000082, + 13.003295898000033 + ], + [ + 103.740905762000068, + 13.007324219000054 + ], + [ + 103.744323730000076, + 13.009704590000069 + ], + [ + 103.748107910000044, + 13.011474609000061 + ], + [ + 103.752502441000047, + 13.010498047000056 + ], + [ + 103.754089355000076, + 13.006896973000039 + ], + [ + 103.757080078000058, + 13.004089355000076 + ], + [ + 103.759277344000054, + 13.001708984000061 + ], + [ + 103.762329102000081, + 12.999694824000073 + ], + [ + 103.764709473000039, + 12.997680664000029 + ], + [ + 103.767700195000032, + 12.994873047000056 + ], + [ + 103.770324707000043, + 12.992309570000032 + ], + [ + 103.772277832000043, + 12.990112305000025 + ], + [ + 103.774475098000039, + 12.988098145000038 + ], + [ + 103.780273437000062, + 12.985900879000042 + ], + [ + 103.784118652000075, + 12.984130859000061 + ], + [ + 103.787109375000057, + 12.981872559000067 + ], + [ + 103.789306641000053, + 12.978515625000057 + ], + [ + 103.790893555000082, + 12.975280762000068 + ], + [ + 103.792297363000046, + 12.972106934000067 + ], + [ + 103.791870117000087, + 12.969116211000028 + ], + [ + 103.793518066000047, + 12.966308594000054 + ], + [ + 103.792907715000069, + 12.962524414000029 + ], + [ + 103.793090820000032, + 12.958496094000054 + ], + [ + 103.788513184000067, + 12.956298828000058 + ], + [ + 103.784484863000046, + 12.954528809000067 + ], + [ + 103.784729004000042, + 12.95147705100004 + ], + [ + 103.784912109000061, + 12.948303223000039 + ], + [ + 103.786315918000071, + 12.945312500000057 + ], + [ + 103.789489746000072, + 12.942871094000054 + ], + [ + 103.791076660000044, + 12.940490723000039 + ], + [ + 103.792480469000054, + 12.937072754000042 + ], + [ + 103.790710449000073, + 12.933105469000054 + ], + [ + 103.791076660000044, + 12.928100586000028 + ], + [ + 103.791503906000059, + 12.924316406000059 + ], + [ + 103.79132080100004, + 12.920104980000076 + ], + [ + 103.791870117000087, + 12.91687011700003 + ], + [ + 103.793884277000075, + 12.914123535000044 + ], + [ + 103.795898437000062, + 12.911315918000071 + ], + [ + 103.797119141000053, + 12.908691406000059 + ], + [ + 103.800109863000046, + 12.904907227000024 + ], + [ + 103.803527832000043, + 12.901672363000046 + ], + [ + 103.807128906000059, + 12.902282715000069 + ], + [ + 103.811096191000047, + 12.902709961000028 + ], + [ + 103.811523437000062, + 12.89929199200003 + ], + [ + 103.814697266000053, + 12.901672363000046 + ], + [ + 103.818115234000061, + 12.903503418000071 + ], + [ + 103.821899414000086, + 12.905090332000043 + ], + [ + 103.825073242000087, + 12.905883789000029 + ], + [ + 103.828308105000076, + 12.907470703000058 + ], + [ + 103.832275391000053, + 12.910888672000056 + ], + [ + 103.835510254000042, + 12.913696289000029 + ], + [ + 103.837707520000038, + 12.910522461000028 + ], + [ + 103.839721680000082, + 12.906127930000025 + ], + [ + 103.841918945000032, + 12.902282715000069 + ], + [ + 103.844299316000047, + 12.899902344000054 + ], + [ + 103.849304199000073, + 12.899475098000039 + ], + [ + 103.853271484000061, + 12.897888184000067 + ], + [ + 103.858276367000087, + 12.897705078000058 + ], + [ + 103.862670898000033, + 12.897094727000024 + ], + [ + 103.865478516000053, + 12.893310547000056 + ], + [ + 103.866088867000087, + 12.888488770000038 + ], + [ + 103.866271973000039, + 12.885498047000056 + ], + [ + 103.867126465000069, + 12.882690430000025 + ], + [ + 103.870300293000071, + 12.881286621000072 + ], + [ + 103.873718262000068, + 12.883483887000068 + ], + [ + 103.875671387000068, + 12.881103516000053 + ], + [ + 103.877685547000056, + 12.877685547000056 + ], + [ + 103.878295898000033, + 12.873107910000044 + ], + [ + 103.876892090000069, + 12.868713379000042 + ], + [ + 103.877075195000032, + 12.865295410000044 + ], + [ + 103.881286621000072, + 12.865478516000053 + ], + [ + 103.884277344000054, + 12.865295410000044 + ], + [ + 103.887329102000081, + 12.864685059000067 + ], + [ + 103.891723633000083, + 12.866882324000073 + ], + [ + 103.895080566000047, + 12.865722656000059 + ], + [ + 103.898681641000053, + 12.865722656000059 + ], + [ + 103.902282715000069, + 12.864074707000043 + ], + [ + 103.904724121000072, + 12.860290527000075 + ], + [ + 103.903930664000086, + 12.855529785000044 + ], + [ + 103.902526855000076, + 12.852478027000075 + ], + [ + 103.902282715000069, + 12.847900391000053 + ], + [ + 103.905273437000062, + 12.845520020000038 + ], + [ + 103.909484863000046, + 12.846130371000072 + ], + [ + 103.909729004000042, + 12.842285156000059 + ], + [ + 103.913696289000086, + 12.838684082000043 + ], + [ + 103.917480469000054, + 12.839904785000044 + ], + [ + 103.920898437000062, + 12.843322754000042 + ], + [ + 103.923095703000058, + 12.845703125000057 + ], + [ + 103.926513672000056, + 12.845275879000042 + ], + [ + 103.927673340000069, + 12.841918945000032 + ], + [ + 103.928283691000047, + 12.838073730000076 + ], + [ + 103.929321289000086, + 12.834899902000075 + ], + [ + 103.931274414000086, + 12.832702637000068 + ], + [ + 103.931701660000044, + 12.829711914000029 + ], + [ + 103.930480957000043, + 12.825927734000061 + ], + [ + 103.933471680000082, + 12.822326660000044 + ], + [ + 103.938110352000081, + 12.824096680000025 + ], + [ + 103.94171142600004, + 12.824279785000044 + ], + [ + 103.945312500000057, + 12.827697754000042 + ], + [ + 103.949096680000082, + 12.829895020000038 + ], + [ + 103.950500488000046, + 12.833496094000054 + ], + [ + 103.950683594000054, + 12.837280273000033 + ], + [ + 103.951904297000056, + 12.840515137000068 + ], + [ + 103.954284668000071, + 12.836730957000043 + ], + [ + 103.954284668000071, + 12.831481934000067 + ], + [ + 103.955078125000057, + 12.828308105000076 + ], + [ + 103.955322266000053, + 12.82452392600004 + ], + [ + 103.955322266000053, + 12.820678711000028 + ], + [ + 103.955871582000043, + 12.815673828000058 + ], + [ + 103.957702637000068, + 12.811889648000033 + ], + [ + 103.961730957000043, + 12.809509277000075 + ], + [ + 103.965515137000068, + 12.807312012000068 + ], + [ + 103.969116211000085, + 12.80749511700003 + ], + [ + 103.971923828000058, + 12.805114746000072 + ], + [ + 103.973876953000058, + 12.802917480000076 + ], + [ + 103.977478027000075, + 12.801696777000075 + ], + [ + 103.981872559000067, + 12.799499512000068 + ], + [ + 103.986328125000057, + 12.799072266000053 + ], + [ + 103.989318848000039, + 12.796691895000038 + ], + [ + 103.992919922000056, + 12.797912598000039 + ], + [ + 103.997497559000067, + 12.80108642600004 + ], + [ + 103.999084473000039, + 12.805480957000043 + ], + [ + 104.00030517600004, + 12.808715820000032 + ], + [ + 104.002502441000047, + 12.813476562000062 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 6.0123227979499996, + "Shape_Area": 0.98465051874099996, + "ADM1_EN": "Ratanak Kiri", + "ADM1_PCODE": "KH16", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 107.542114258000083, + 14.6875 + ], + [ + 107.545898437000062, + 14.686279297000056 + ], + [ + 107.550476074000073, + 14.687072754000042 + ], + [ + 107.555480957000043, + 14.685302734000061 + ], + [ + 107.553527832000043, + 14.681274414000029 + ], + [ + 107.550903320000089, + 14.678710937000062 + ], + [ + 107.550720215000069, + 14.674316406000059 + ], + [ + 107.551696777000075, + 14.670104980000076 + ], + [ + 107.554687500000057, + 14.66687011700003 + ], + [ + 107.554687500000057, + 14.661682129000042 + ], + [ + 107.551879883000083, + 14.658874512000068 + ], + [ + 107.549072266000053, + 14.657897949000073 + ], + [ + 107.549682617000087, + 14.653320312000062 + ], + [ + 107.551330566000047, + 14.650512695000032 + ], + [ + 107.551513672000056, + 14.645690918000071 + ], + [ + 107.552917480000076, + 14.641113281000059 + ], + [ + 107.555908203000058, + 14.637695312000062 + ], + [ + 107.558105469000054, + 14.633728027000075 + ], + [ + 107.558288574000073, + 14.630310059000067 + ], + [ + 107.557678223000039, + 14.626098633000026 + ], + [ + 107.558105469000054, + 14.622497559000067 + ], + [ + 107.553710937000062, + 14.619323730000076 + ], + [ + 107.550476074000073, + 14.617675781000059 + ], + [ + 107.547485352000081, + 14.61749267600004 + ], + [ + 107.544677734000061, + 14.616271973000039 + ], + [ + 107.544494629000042, + 14.612487793000071 + ], + [ + 107.544311523000033, + 14.608703613000046 + ], + [ + 107.542724609000061, + 14.605895996000072 + ], + [ + 107.539123535000044, + 14.603698730000076 + ], + [ + 107.537292480000076, + 14.601074219000054 + ], + [ + 107.533874512000068, + 14.599121094000054 + ], + [ + 107.528930664000086, + 14.597900391000053 + ], + [ + 107.524902344000054, + 14.597290039000029 + ], + [ + 107.523498535000044, + 14.594299316000047 + ], + [ + 107.522888184000067, + 14.591491699000073 + ], + [ + 107.521484375000057, + 14.587890625000057 + ], + [ + 107.518493652000075, + 14.584716797000056 + ], + [ + 107.520874023000033, + 14.581298828000058 + ], + [ + 107.522888184000067, + 14.577514648000033 + ], + [ + 107.523681641000053, + 14.574096680000025 + ], + [ + 107.523315430000082, + 14.570922852000024 + ], + [ + 107.523315430000082, + 14.566284180000025 + ], + [ + 107.525085449000073, + 14.563476562000062 + ], + [ + 107.526123047000056, + 14.560485840000069 + ], + [ + 107.529907227000081, + 14.558105469000054 + ], + [ + 107.532104492000087, + 14.554077148000033 + ], + [ + 107.530700684000067, + 14.550476074000073 + ], + [ + 107.531311035000044, + 14.546081543000071 + ], + [ + 107.527893066000047, + 14.543701172000056 + ], + [ + 107.527709961000085, + 14.540710449000073 + ], + [ + 107.528076172000056, + 14.537109375000057 + ], + [ + 107.526123047000056, + 14.534729004000042 + ], + [ + 107.524719238000046, + 14.531311035000044 + ], + [ + 107.522705078000058, + 14.527709961000028 + ], + [ + 107.522888184000067, + 14.523681641000053 + ], + [ + 107.522094727000081, + 14.519897461000028 + ], + [ + 107.519287109000061, + 14.515686035000044 + ], + [ + 107.516296387000068, + 14.512084961000028 + ], + [ + 107.511108398000033, + 14.510314941000047 + ], + [ + 107.508300781000059, + 14.507690430000025 + ], + [ + 107.51007080100004, + 14.503906250000057 + ], + [ + 107.512695312000062, + 14.501892090000069 + ], + [ + 107.513916016000053, + 14.499084473000039 + ], + [ + 107.511291504000042, + 14.496276855000076 + ], + [ + 107.510314941000047, + 14.492675781000059 + ], + [ + 107.51007080100004, + 14.489501953000058 + ], + [ + 107.507690430000082, + 14.486877441000047 + ], + [ + 107.506103516000053, + 14.48327636700003 + ], + [ + 107.505676270000038, + 14.479125977000024 + ], + [ + 107.505126953000058, + 14.475708008000026 + ], + [ + 107.504516602000081, + 14.472473145000038 + ], + [ + 107.503906250000057, + 14.469299316000047 + ], + [ + 107.501892090000069, + 14.466308594000054 + ], + [ + 107.501708984000061, + 14.462890625000057 + ], + [ + 107.503723145000038, + 14.460510254000042 + ], + [ + 107.505126953000058, + 14.456909180000025 + ], + [ + 107.503112793000071, + 14.453674316000047 + ], + [ + 107.502502441000047, + 14.450317383000026 + ], + [ + 107.501281738000046, + 14.447082520000038 + ], + [ + 107.50030517600004, + 14.443908691000047 + ], + [ + 107.498474121000072, + 14.440124512000068 + ], + [ + 107.497680664000086, + 14.436279297000056 + ], + [ + 107.495300293000071, + 14.434692383000026 + ], + [ + 107.491699219000054, + 14.432128906000059 + ], + [ + 107.489929199000073, + 14.427307129000042 + ], + [ + 107.490112305000082, + 14.423278809000067 + ], + [ + 107.490722656000059, + 14.419677734000061 + ], + [ + 107.489929199000073, + 14.415893555000025 + ], + [ + 107.489685059000067, + 14.411499023000033 + ], + [ + 107.489318848000039, + 14.407897949000073 + ], + [ + 107.486328125000057, + 14.405090332000043 + ], + [ + 107.481506348000039, + 14.403686523000033 + ], + [ + 107.478271484000061, + 14.404907227000024 + ], + [ + 107.475280762000068, + 14.407470703000058 + ], + [ + 107.471496582000043, + 14.40710449200003 + ], + [ + 107.468078613000046, + 14.405090332000043 + ], + [ + 107.463317871000072, + 14.405700684000067 + ], + [ + 107.459106445000089, + 14.409301758000026 + ], + [ + 107.458312988000046, + 14.412475586000028 + ], + [ + 107.455688477000081, + 14.414123535000044 + ], + [ + 107.452514648000033, + 14.415710449000073 + ], + [ + 107.450073242000087, + 14.417907715000069 + ], + [ + 107.448486328000058, + 14.414123535000044 + ], + [ + 107.448303223000039, + 14.411071777000075 + ], + [ + 107.447509766000053, + 14.40710449200003 + ], + [ + 107.446105957000043, + 14.402099609000061 + ], + [ + 107.443298340000069, + 14.39929199200003 + ], + [ + 107.442321777000075, + 14.395874023000033 + ], + [ + 107.441284180000082, + 14.391906738000046 + ], + [ + 107.441284180000082, + 14.388305664000029 + ], + [ + 107.439880371000072, + 14.385498047000056 + ], + [ + 107.439697266000053, + 14.382080078000058 + ], + [ + 107.435729980000076, + 14.381286621000072 + ], + [ + 107.432128906000059, + 14.379272461000028 + ], + [ + 107.428283691000047, + 14.376281738000046 + ], + [ + 107.424682617000087, + 14.373291016000053 + ], + [ + 107.422119141000053, + 14.370727539000029 + ], + [ + 107.419921875000057, + 14.367675781000059 + ], + [ + 107.417480469000054, + 14.364501953000058 + ], + [ + 107.415283203000058, + 14.362670898000033 + ], + [ + 107.412475586000085, + 14.362121582000043 + ], + [ + 107.409301758000083, + 14.363281250000057 + ], + [ + 107.410522461000085, + 14.359130859000061 + ], + [ + 107.410705566000047, + 14.356079102000024 + ], + [ + 107.409301758000083, + 14.352905273000033 + ], + [ + 107.409118652000075, + 14.348876953000058 + ], + [ + 107.407104492000087, + 14.345703125000057 + ], + [ + 107.403076172000056, + 14.342895508000026 + ], + [ + 107.401123047000056, + 14.337890625000057 + ], + [ + 107.399475098000039, + 14.333496094000054 + ], + [ + 107.396118164000086, + 14.330322266000053 + ], + [ + 107.393310547000056, + 14.328491211000028 + ], + [ + 107.391296387000068, + 14.32452392600004 + ], + [ + 107.391723633000083, + 14.320678711000028 + ], + [ + 107.391113281000059, + 14.317321777000075 + ], + [ + 107.392517090000069, + 14.314270020000038 + ], + [ + 107.395690918000071, + 14.312683105000076 + ], + [ + 107.397521973000039, + 14.308715820000032 + ], + [ + 107.400085449000073, + 14.305908203000058 + ], + [ + 107.401672363000046, + 14.303283691000047 + ], + [ + 107.405090332000043, + 14.301513672000056 + ], + [ + 107.406921387000068, + 14.297302246000072 + ], + [ + 107.406677246000072, + 14.292907715000069 + ], + [ + 107.406127930000082, + 14.290100098000039 + ], + [ + 107.406677246000072, + 14.286071777000075 + ], + [ + 107.408081055000082, + 14.281127930000025 + ], + [ + 107.409484863000046, + 14.276489258000026 + ], + [ + 107.409484863000046, + 14.271301270000038 + ], + [ + 107.409301758000083, + 14.267700195000032 + ], + [ + 107.409301758000083, + 14.264282227000024 + ], + [ + 107.40850830100004, + 14.261291504000042 + ], + [ + 107.405090332000043, + 14.258483887000068 + ], + [ + 107.402893066000047, + 14.255493164000029 + ], + [ + 107.401306152000075, + 14.251098633000026 + ], + [ + 107.401489258000083, + 14.246093750000057 + ], + [ + 107.403930664000086, + 14.242919922000056 + ], + [ + 107.406677246000072, + 14.239074707000043 + ], + [ + 107.407104492000087, + 14.234497070000032 + ], + [ + 107.403686523000033, + 14.23132324200003 + ], + [ + 107.399902344000054, + 14.227294922000056 + ], + [ + 107.397094727000081, + 14.222717285000044 + ], + [ + 107.396484375000057, + 14.217712402000075 + ], + [ + 107.395080566000047, + 14.214111328000058 + ], + [ + 107.393920898000033, + 14.210327148000033 + ], + [ + 107.390502930000082, + 14.210327148000033 + ], + [ + 107.388488770000038, + 14.207092285000044 + ], + [ + 107.387084961000085, + 14.202270508000026 + ], + [ + 107.385314941000047, + 14.198486328000058 + ], + [ + 107.383300781000059, + 14.195312500000057 + ], + [ + 107.381896973000039, + 14.190917969000054 + ], + [ + 107.381286621000072, + 14.1875 + ], + [ + 107.379516602000081, + 14.183105469000054 + ], + [ + 107.376708984000061, + 14.178894043000071 + ], + [ + 107.373474121000072, + 14.179321289000029 + ], + [ + 107.369873047000056, + 14.179870605000076 + ], + [ + 107.366271973000039, + 14.177490234000061 + ], + [ + 107.364074707000043, + 14.174072266000053 + ], + [ + 107.360717773000033, + 14.171325684000067 + ], + [ + 107.359130859000061, + 14.16827392600004 + ], + [ + 107.361083984000061, + 14.165893555000025 + ], + [ + 107.362670898000033, + 14.162902832000043 + ], + [ + 107.360107422000056, + 14.158874512000068 + ], + [ + 107.356323242000087, + 14.156494141000053 + ], + [ + 107.353515625000057, + 14.154479980000076 + ], + [ + 107.353271484000061, + 14.149719238000046 + ], + [ + 107.351318359000061, + 14.146484375000057 + ], + [ + 107.348510742000087, + 14.143310547000056 + ], + [ + 107.346923828000058, + 14.14093017600004 + ], + [ + 107.345520020000038, + 14.137329102000024 + ], + [ + 107.342895508000083, + 14.134887695000032 + ], + [ + 107.340087891000053, + 14.132080078000058 + ], + [ + 107.339294434000067, + 14.128723145000038 + ], + [ + 107.338500977000081, + 14.12530517600004 + ], + [ + 107.338317871000072, + 14.121704102000024 + ], + [ + 107.336730957000043, + 14.117919922000056 + ], + [ + 107.336120605000076, + 14.114318848000039 + ], + [ + 107.335327148000033, + 14.10968017600004 + ], + [ + 107.338317871000072, + 14.106689453000058 + ], + [ + 107.344116211000085, + 14.107116699000073 + ], + [ + 107.346679687000062, + 14.104309082000043 + ], + [ + 107.349304199000073, + 14.100891113000046 + ], + [ + 107.352111816000047, + 14.09851074200003 + ], + [ + 107.356079102000081, + 14.097106934000067 + ], + [ + 107.358886719000054, + 14.094482422000056 + ], + [ + 107.360473633000083, + 14.091491699000073 + ], + [ + 107.363708496000072, + 14.088500977000024 + ], + [ + 107.366516113000046, + 14.085083008000026 + ], + [ + 107.371704102000081, + 14.083679199000073 + ], + [ + 107.371093750000057, + 14.080322266000053 + ], + [ + 107.370483398000033, + 14.076293945000032 + ], + [ + 107.371704102000081, + 14.072326660000044 + ], + [ + 107.371093750000057, + 14.069274902000075 + ], + [ + 107.368103027000075, + 14.066284180000025 + ], + [ + 107.365112305000082, + 14.061706543000071 + ], + [ + 107.366088867000087, + 14.056701660000044 + ], + [ + 107.365295410000044, + 14.053894043000071 + ], + [ + 107.363891602000081, + 14.050476074000073 + ], + [ + 107.364318848000039, + 14.046875 + ], + [ + 107.364929199000073, + 14.043884277000075 + ], + [ + 107.365478516000053, + 14.039123535000044 + ], + [ + 107.365478516000053, + 14.033874512000068 + ], + [ + 107.363708496000072, + 14.031311035000044 + ], + [ + 107.361083984000061, + 14.030090332000043 + ], + [ + 107.358520508000083, + 14.028930664000029 + ], + [ + 107.357482910000044, + 14.025512695000032 + ], + [ + 107.358093262000068, + 14.021728516000053 + ], + [ + 107.357910156000059, + 14.016906738000046 + ], + [ + 107.361083984000061, + 14.015502930000025 + ], + [ + 107.364318848000039, + 14.014282227000024 + ], + [ + 107.366516113000046, + 14.012084961000028 + ], + [ + 107.369323730000076, + 14.009094238000046 + ], + [ + 107.371887207000043, + 14.005676270000038 + ], + [ + 107.374511719000054, + 14.002075195000032 + ], + [ + 107.387512207000043, + 13.990478516000053 + ], + [ + 107.391723633000083, + 13.990905762000068 + ], + [ + 107.396728516000053, + 13.99249267600004 + ], + [ + 107.400329590000069, + 13.990722656000059 + ], + [ + 107.404113770000038, + 13.990112305000025 + ], + [ + 107.408081055000082, + 13.990722656000059 + ], + [ + 107.410705566000047, + 13.992919922000056 + ], + [ + 107.414306641000053, + 13.994323730000076 + ], + [ + 107.418701172000056, + 13.994689941000047 + ], + [ + 107.422485352000081, + 13.994689941000047 + ], + [ + 107.424926758000083, + 13.996520996000072 + ], + [ + 107.427917480000076, + 13.997924805000025 + ], + [ + 107.430480957000043, + 13.995117187000062 + ], + [ + 107.433471680000082, + 13.994506836000028 + ], + [ + 107.436279297000056, + 13.996276855000076 + ], + [ + 107.439880371000072, + 13.997070312000062 + ], + [ + 107.443908691000047, + 13.996704102000024 + ], + [ + 107.444885254000042, + 13.992309570000032 + ], + [ + 107.446289062000062, + 13.987915039000029 + ], + [ + 107.448486328000058, + 13.985900879000042 + ], + [ + 107.450683594000054, + 13.983093262000068 + ], + [ + 107.452697754000042, + 13.980895996000072 + ], + [ + 107.455688477000081, + 13.978515625000057 + ], + [ + 107.455322266000053, + 13.974304199000073 + ], + [ + 107.454895020000038, + 13.970703125000057 + ], + [ + 107.455322266000053, + 13.96569824200003 + ], + [ + 107.455871582000043, + 13.961486816000047 + ], + [ + 107.455505371000072, + 13.958496094000054 + ], + [ + 107.454895020000038, + 13.955688477000024 + ], + [ + 107.454528809000067, + 13.952087402000075 + ], + [ + 107.453918457000043, + 13.948730469000054 + ], + [ + 107.453918457000043, + 13.945129395000038 + ], + [ + 107.453918457000043, + 13.939697266000053 + ], + [ + 107.453674316000047, + 13.935119629000042 + ], + [ + 107.453918457000043, + 13.930114746000072 + ], + [ + 107.456909180000082, + 13.926879883000026 + ], + [ + 107.458129883000083, + 13.923095703000058 + ], + [ + 107.461486816000047, + 13.921325684000067 + ], + [ + 107.466125488000046, + 13.921508789000029 + ], + [ + 107.470275879000042, + 13.921325684000067 + ], + [ + 107.472473145000038, + 13.919128418000071 + ], + [ + 107.472473145000038, + 13.914489746000072 + ], + [ + 107.471130371000072, + 13.908691406000059 + ], + [ + 107.471496582000043, + 13.904724121000072 + ], + [ + 107.470886230000076, + 13.901916504000042 + ], + [ + 107.470886230000076, + 13.898071289000029 + ], + [ + 107.470886230000076, + 13.893676758000026 + ], + [ + 107.469299316000047, + 13.889282227000024 + ], + [ + 107.465881348000039, + 13.886108398000033 + ], + [ + 107.463684082000043, + 13.884094238000046 + ], + [ + 107.461120605000076, + 13.881896973000039 + ], + [ + 107.458129883000083, + 13.879089355000076 + ], + [ + 107.455688477000081, + 13.875671387000068 + ], + [ + 107.454284668000071, + 13.872070312000062 + ], + [ + 107.455871582000043, + 13.867919922000056 + ], + [ + 107.45928955100004, + 13.865295410000044 + ], + [ + 107.463500977000081, + 13.862915039000029 + ], + [ + 107.467895508000083, + 13.85968017600004 + ], + [ + 107.472106934000067, + 13.857116699000073 + ], + [ + 107.473083496000072, + 13.852294922000056 + ], + [ + 107.470520020000038, + 13.847106934000067 + ], + [ + 107.468078613000046, + 13.842895508000026 + ], + [ + 107.465881348000039, + 13.839294434000067 + ], + [ + 107.463317871000072, + 13.836303711000028 + ], + [ + 107.460510254000042, + 13.83428955100004 + ], + [ + 107.456726074000073, + 13.830078125000057 + ], + [ + 107.455505371000072, + 13.825500488000046 + ], + [ + 107.457275391000053, + 13.822082520000038 + ], + [ + 107.459899902000075, + 13.819702148000033 + ], + [ + 107.461486816000047, + 13.817077637000068 + ], + [ + 107.461303711000085, + 13.813293457000043 + ], + [ + 107.460327148000033, + 13.809509277000075 + ], + [ + 107.45928955100004, + 13.806274414000029 + ], + [ + 107.456909180000082, + 13.803527832000043 + ], + [ + 107.454284668000071, + 13.800292969000054 + ], + [ + 107.452697754000042, + 13.797302246000072 + ], + [ + 107.451904297000056, + 13.794494629000042 + ], + [ + 107.454895020000038, + 13.79187011700003 + ], + [ + 107.458129883000083, + 13.789672852000024 + ], + [ + 107.459716797000056, + 13.786926270000038 + ], + [ + 107.462890625000057, + 13.783874512000068 + ], + [ + 107.466674805000082, + 13.781494141000053 + ], + [ + 107.470703125000057, + 13.779113770000038 + ], + [ + 107.474487305000082, + 13.777282715000069 + ], + [ + 107.477478027000075, + 13.776306152000075 + ], + [ + 107.480712891000053, + 13.775878906000059 + ], + [ + 107.484130859000061, + 13.77569580100004 + ], + [ + 107.487304687000062, + 13.775329590000069 + ], + [ + 107.490722656000059, + 13.774108887000068 + ], + [ + 107.494873047000056, + 13.771911621000072 + ], + [ + 107.497924805000082, + 13.768310547000056 + ], + [ + 107.522277832000043, + 13.751892090000069 + ], + [ + 107.535278320000089, + 13.742309570000032 + ], + [ + 107.552307129000042, + 13.694519043000071 + ], + [ + 107.570678711000085, + 13.662719727000024 + ], + [ + 107.571716309000067, + 13.629089355000076 + ], + [ + 107.572692871000072, + 13.624694824000073 + ], + [ + 107.587524414000086, + 13.591674805000025 + ], + [ + 107.606872559000067, + 13.54772949200003 + ], + [ + 107.616882324000073, + 13.525878906000059 + ], + [ + 107.619689941000047, + 13.502075195000032 + ], + [ + 107.623291016000053, + 13.449279785000044 + ], + [ + 107.62530517600004, + 13.413085937000062 + ], + [ + 107.627685547000056, + 13.369506836000028 + ], + [ + 107.627502441000047, + 13.365905762000068 + ], + [ + 107.616088867000087, + 13.337280273000033 + ], + [ + 107.609313965000069, + 13.316894531000059 + ], + [ + 107.602905273000033, + 13.302490234000061 + ], + [ + 107.600097656000059, + 13.301879883000026 + ], + [ + 107.597717285000044, + 13.303527832000043 + ], + [ + 107.595275879000042, + 13.305725098000039 + ], + [ + 107.59210205100004, + 13.306274414000029 + ], + [ + 107.587707520000038, + 13.305908203000058 + ], + [ + 107.584472656000059, + 13.304870605000076 + ], + [ + 107.582702637000068, + 13.302124023000033 + ], + [ + 107.582885742000087, + 13.298522949000073 + ], + [ + 107.581115723000039, + 13.295288086000028 + ], + [ + 107.577087402000075, + 13.294494629000042 + ], + [ + 107.574279785000044, + 13.293518066000047 + ], + [ + 107.571899414000086, + 13.290527344000054 + ], + [ + 107.569702148000033, + 13.286682129000042 + ], + [ + 107.564880371000072, + 13.283874512000068 + ], + [ + 107.560729980000076, + 13.285522461000028 + ], + [ + 107.556091309000067, + 13.287292480000076 + ], + [ + 107.553283691000047, + 13.290710449000073 + ], + [ + 107.549682617000087, + 13.293518066000047 + ], + [ + 107.545715332000043, + 13.294128418000071 + ], + [ + 107.542907715000069, + 13.294677734000061 + ], + [ + 107.539916992000087, + 13.296325684000067 + ], + [ + 107.536315918000071, + 13.298095703000058 + ], + [ + 107.532897949000073, + 13.29968261700003 + ], + [ + 107.528503418000071, + 13.298706055000025 + ], + [ + 107.524108887000068, + 13.297485352000024 + ], + [ + 107.520690918000071, + 13.296691895000038 + ], + [ + 107.516723633000083, + 13.295715332000043 + ], + [ + 107.512878418000071, + 13.298522949000073 + ], + [ + 107.511108398000033, + 13.301696777000075 + ], + [ + 107.507324219000054, + 13.302490234000061 + ], + [ + 107.503906250000057, + 13.299499512000068 + ], + [ + 107.500671387000068, + 13.296691895000038 + ], + [ + 107.496887207000043, + 13.297302246000072 + ], + [ + 107.495117187000062, + 13.301513672000056 + ], + [ + 107.491882324000073, + 13.305114746000072 + ], + [ + 107.488891602000081, + 13.306701660000044 + ], + [ + 107.486694336000085, + 13.309875488000046 + ], + [ + 107.485473633000083, + 13.3125 + ], + [ + 107.483093262000068, + 13.31530761700003 + ], + [ + 107.479919434000067, + 13.318908691000047 + ], + [ + 107.477111816000047, + 13.322509766000053 + ], + [ + 107.474670410000044, + 13.325683594000054 + ], + [ + 107.472473145000038, + 13.328491211000028 + ], + [ + 107.470703125000057, + 13.331481934000067 + ], + [ + 107.467285156000059, + 13.334472656000059 + ], + [ + 107.462280273000033, + 13.333923340000069 + ], + [ + 107.457885742000087, + 13.330871582000043 + ], + [ + 107.456298828000058, + 13.327697754000042 + ], + [ + 107.455688477000081, + 13.32452392600004 + ], + [ + 107.455322266000053, + 13.319091797000056 + ], + [ + 107.452270508000083, + 13.319091797000056 + ], + [ + 107.448486328000058, + 13.320922852000024 + ], + [ + 107.444519043000071, + 13.319274902000075 + ], + [ + 107.442687988000046, + 13.314514160000044 + ], + [ + 107.438293457000043, + 13.312072754000042 + ], + [ + 107.435302734000061, + 13.311279297000056 + ], + [ + 107.432495117000087, + 13.310485840000069 + ], + [ + 107.428283691000047, + 13.309692383000026 + ], + [ + 107.424682617000087, + 13.308715820000032 + ], + [ + 107.421081543000071, + 13.307312012000068 + ], + [ + 107.41827392600004, + 13.306274414000029 + ], + [ + 107.415283203000058, + 13.304687500000057 + ], + [ + 107.412292480000076, + 13.302307129000042 + ], + [ + 107.408874512000068, + 13.299072266000053 + ], + [ + 107.405883789000086, + 13.298278809000067 + ], + [ + 107.402893066000047, + 13.297119141000053 + ], + [ + 107.403503418000071, + 13.293884277000075 + ], + [ + 107.405090332000043, + 13.290527344000054 + ], + [ + 107.405273437000062, + 13.286682129000042 + ], + [ + 107.402282715000069, + 13.285522461000028 + ], + [ + 107.399108887000068, + 13.286926270000038 + ], + [ + 107.395690918000071, + 13.288085937000062 + ], + [ + 107.39288330100004, + 13.286682129000042 + ], + [ + 107.392700195000089, + 13.283081055000025 + ], + [ + 107.389526367000087, + 13.280517578000058 + ], + [ + 107.384887695000089, + 13.281921387000068 + ], + [ + 107.381530762000068, + 13.281921387000068 + ], + [ + 107.378723145000038, + 13.280700684000067 + ], + [ + 107.375122070000089, + 13.279113770000038 + ], + [ + 107.370300293000071, + 13.277099609000061 + ], + [ + 107.366088867000087, + 13.279724121000072 + ], + [ + 107.363098145000038, + 13.283325195000032 + ], + [ + 107.360473633000083, + 13.286926270000038 + ], + [ + 107.359130859000061, + 13.289489746000072 + ], + [ + 107.358093262000068, + 13.293090820000032 + ], + [ + 107.356506348000039, + 13.296691895000038 + ], + [ + 107.353088379000042, + 13.299499512000068 + ], + [ + 107.34991455100004, + 13.301879883000026 + ], + [ + 107.346923828000058, + 13.303894043000071 + ], + [ + 107.344299316000047, + 13.307312012000068 + ], + [ + 107.342529297000056, + 13.310485840000069 + ], + [ + 107.340270996000072, + 13.313476562000062 + ], + [ + 107.338500977000081, + 13.316101074000073 + ], + [ + 107.334716797000056, + 13.316101074000073 + ], + [ + 107.329284668000071, + 13.315673828000058 + ], + [ + 107.323730469000054, + 13.315917969000054 + ], + [ + 107.318298340000069, + 13.315490723000039 + ], + [ + 107.313476562000062, + 13.312316895000038 + ], + [ + 107.309692383000083, + 13.309082031000059 + ], + [ + 107.305114746000072, + 13.307922363000046 + ], + [ + 107.302307129000042, + 13.307312012000068 + ], + [ + 107.298522949000073, + 13.307922363000046 + ], + [ + 107.293701172000056, + 13.308715820000032 + ], + [ + 107.291076660000044, + 13.310119629000042 + ], + [ + 107.289489746000072, + 13.312927246000072 + ], + [ + 107.288085937000062, + 13.316101074000073 + ], + [ + 107.287109375000057, + 13.318908691000047 + ], + [ + 107.285278320000089, + 13.323486328000058 + ], + [ + 107.283081055000082, + 13.328674316000047 + ], + [ + 107.280883789000086, + 13.334106445000032 + ], + [ + 107.279296875000057, + 13.339111328000058 + ], + [ + 107.278076172000056, + 13.34210205100004 + ], + [ + 107.276489258000083, + 13.345886230000076 + ], + [ + 107.274719238000046, + 13.349487305000025 + ], + [ + 107.272705078000058, + 13.353271484000061 + ], + [ + 107.271118164000086, + 13.356079102000024 + ], + [ + 107.269714355000076, + 13.358703613000046 + ], + [ + 107.267089844000054, + 13.360717773000033 + ], + [ + 107.263671875000057, + 13.362304687000062 + ], + [ + 107.259887695000089, + 13.362670898000033 + ], + [ + 107.255676270000038, + 13.363891602000024 + ], + [ + 107.252075195000089, + 13.365478516000053 + ], + [ + 107.249328613000046, + 13.366516113000046 + ], + [ + 107.246520996000072, + 13.367309570000032 + ], + [ + 107.243286133000083, + 13.367309570000032 + ], + [ + 107.240295410000044, + 13.36608886700003 + ], + [ + 107.237670898000033, + 13.363098145000038 + ], + [ + 107.236083984000061, + 13.360473633000026 + ], + [ + 107.235107422000056, + 13.357482910000044 + ], + [ + 107.235290527000075, + 13.354309082000043 + ], + [ + 107.236511230000076, + 13.350097656000059 + ], + [ + 107.237487793000071, + 13.345886230000076 + ], + [ + 107.236877441000047, + 13.340881348000039 + ], + [ + 107.23468017600004, + 13.336730957000043 + ], + [ + 107.231689453000058, + 13.334899902000075 + ], + [ + 107.227111816000047, + 13.333496094000054 + ], + [ + 107.222900391000053, + 13.332519531000059 + ], + [ + 107.219726562000062, + 13.331481934000067 + ], + [ + 107.216674805000082, + 13.329101562000062 + ], + [ + 107.214111328000058, + 13.325500488000046 + ], + [ + 107.213500977000081, + 13.321472168000071 + ], + [ + 107.210083008000083, + 13.318298340000069 + ], + [ + 107.206481934000067, + 13.316528320000032 + ], + [ + 107.202880859000061, + 13.315124512000068 + ], + [ + 107.198303223000039, + 13.312683105000076 + ], + [ + 107.194091797000056, + 13.310119629000042 + ], + [ + 107.189697266000053, + 13.307922363000046 + ], + [ + 107.184875488000046, + 13.307678223000039 + ], + [ + 107.179870605000076, + 13.306884766000053 + ], + [ + 107.176879883000083, + 13.306701660000044 + ], + [ + 107.172485352000081, + 13.306274414000029 + ], + [ + 107.168518066000047, + 13.306518555000025 + ], + [ + 107.165710449000073, + 13.30749511700003 + ], + [ + 107.162475586000085, + 13.309082031000059 + ], + [ + 107.159301758000083, + 13.311889648000033 + ], + [ + 107.158691406000059, + 13.314880371000072 + ], + [ + 107.15850830100004, + 13.319091797000056 + ], + [ + 107.157470703000058, + 13.323730469000054 + ], + [ + 107.153503418000071, + 13.326904297000056 + ], + [ + 107.149719238000046, + 13.328918457000043 + ], + [ + 107.145690918000071, + 13.330871582000043 + ], + [ + 107.141479492000087, + 13.331115723000039 + ], + [ + 107.136901855000076, + 13.330871582000043 + ], + [ + 107.133483887000068, + 13.329895020000038 + ], + [ + 107.131286621000072, + 13.327270508000026 + ], + [ + 107.129089355000076, + 13.324707031000059 + ], + [ + 107.127685547000056, + 13.322082520000038 + ], + [ + 107.125671387000068, + 13.318908691000047 + ], + [ + 107.123901367000087, + 13.316101074000073 + ], + [ + 107.120910645000038, + 13.314086914000029 + ], + [ + 107.117309570000089, + 13.3125 + ], + [ + 107.114685059000067, + 13.311279297000056 + ], + [ + 107.110900879000042, + 13.309692383000026 + ], + [ + 107.106506348000039, + 13.308471680000025 + ], + [ + 107.102478027000075, + 13.308105469000054 + ], + [ + 107.098876953000058, + 13.308105469000054 + ], + [ + 107.094299316000047, + 13.309082031000059 + ], + [ + 107.090698242000087, + 13.310485840000069 + ], + [ + 107.087280273000033, + 13.312683105000076 + ], + [ + 107.083923340000069, + 13.31530761700003 + ], + [ + 107.082092285000044, + 13.317871094000054 + ], + [ + 107.078491211000085, + 13.321105957000043 + ], + [ + 107.075927734000061, + 13.317321777000075 + ], + [ + 107.078491211000085, + 13.313720703000058 + ], + [ + 107.075073242000087, + 13.311706543000071 + ], + [ + 107.070495605000076, + 13.311096191000047 + ], + [ + 107.070312500000057, + 13.307922363000046 + ], + [ + 107.072875977000081, + 13.305114746000072 + ], + [ + 107.075073242000087, + 13.302307129000042 + ], + [ + 107.071289062000062, + 13.299499512000068 + ], + [ + 107.075927734000061, + 13.297912598000039 + ], + [ + 107.077697754000042, + 13.294494629000042 + ], + [ + 107.07452392600004, + 13.294311523000033 + ], + [ + 107.077270508000083, + 13.290283203000058 + ], + [ + 107.081298828000058, + 13.288085937000062 + ], + [ + 107.080688477000081, + 13.283081055000025 + ], + [ + 107.081726074000073, + 13.279296875000057 + ], + [ + 107.086486816000047, + 13.276489258000026 + ], + [ + 107.089111328000058, + 13.27429199200003 + ], + [ + 107.089904785000044, + 13.270324707000043 + ], + [ + 107.088684082000043, + 13.26593017600004 + ], + [ + 107.089111328000058, + 13.262878418000071 + ], + [ + 107.087707520000038, + 13.259277344000054 + ], + [ + 107.090515137000068, + 13.255310059000067 + ], + [ + 107.087280273000033, + 13.252319336000028 + ], + [ + 107.091125488000046, + 13.248474121000072 + ], + [ + 107.093078613000046, + 13.244506836000028 + ], + [ + 107.093078613000046, + 13.240905762000068 + ], + [ + 107.089904785000044, + 13.238281250000057 + ], + [ + 107.086914062000062, + 13.237304687000062 + ], + [ + 107.089111328000058, + 13.235107422000056 + ], + [ + 107.087097168000071, + 13.232299805000025 + ], + [ + 107.083496094000054, + 13.230102539000029 + ], + [ + 107.084899902000075, + 13.226928711000028 + ], + [ + 107.084716797000056, + 13.223083496000072 + ], + [ + 107.082519531000059, + 13.218872070000032 + ], + [ + 107.082885742000087, + 13.215515137000068 + ], + [ + 107.083923340000069, + 13.212524414000029 + ], + [ + 107.082092285000044, + 13.209716797000056 + ], + [ + 107.083679199000073, + 13.205322266000053 + ], + [ + 107.081115723000039, + 13.202270508000026 + ], + [ + 107.078918457000043, + 13.19952392600004 + ], + [ + 107.075683594000054, + 13.198913574000073 + ], + [ + 107.074890137000068, + 13.195922852000024 + ], + [ + 107.072509766000053, + 13.194091797000056 + ], + [ + 107.069274902000075, + 13.194885254000042 + ], + [ + 107.06671142600004, + 13.192687988000046 + ], + [ + 107.063903809000067, + 13.190490723000039 + ], + [ + 107.062683105000076, + 13.187683105000076 + ], + [ + 107.060302734000061, + 13.185119629000042 + ], + [ + 107.059509277000075, + 13.182128906000059 + ], + [ + 107.055297852000081, + 13.180480957000043 + ], + [ + 107.051879883000083, + 13.177490234000061 + ], + [ + 107.048706055000082, + 13.173706055000025 + ], + [ + 107.044677734000061, + 13.173095703000058 + ], + [ + 107.040893555000082, + 13.172912598000039 + ], + [ + 107.037292480000076, + 13.174072266000053 + ], + [ + 107.036499023000033, + 13.178100586000028 + ], + [ + 107.034912109000061, + 13.180908203000058 + ], + [ + 107.032287598000039, + 13.182312012000068 + ], + [ + 107.030883789000086, + 13.185119629000042 + ], + [ + 107.027709961000085, + 13.185913086000028 + ], + [ + 107.023925781000059, + 13.186706543000071 + ], + [ + 107.019470215000069, + 13.186096191000047 + ], + [ + 107.015319824000073, + 13.184509277000075 + ], + [ + 107.012329102000081, + 13.185913086000028 + ], + [ + 107.008911133000083, + 13.187072754000042 + ], + [ + 107.005126953000058, + 13.187683105000076 + ], + [ + 107.001525879000042, + 13.185913086000028 + ], + [ + 106.996887207000043, + 13.184509277000075 + ], + [ + 106.993103027000075, + 13.182312012000068 + ], + [ + 106.990112305000082, + 13.181274414000029 + ], + [ + 106.986694336000085, + 13.180725098000039 + ], + [ + 106.983703613000046, + 13.179321289000029 + ], + [ + 106.980285645000038, + 13.177917480000076 + ], + [ + 106.977478027000075, + 13.179504395000038 + ], + [ + 106.974670410000044, + 13.181518555000025 + ], + [ + 106.971130371000072, + 13.18249511700003 + ], + [ + 106.966918945000089, + 13.182922363000046 + ], + [ + 106.963317871000072, + 13.18389892600004 + ], + [ + 106.960327148000033, + 13.18249511700003 + ], + [ + 106.958312988000046, + 13.180297852000024 + ], + [ + 106.953918457000043, + 13.177917480000076 + ], + [ + 106.947875977000081, + 13.177307129000042 + ], + [ + 106.943725586000085, + 13.176696777000075 + ], + [ + 106.940673828000058, + 13.175292969000054 + ], + [ + 106.936889648000033, + 13.174316406000059 + ], + [ + 106.93389892600004, + 13.173889160000044 + ], + [ + 106.930480957000043, + 13.174926758000026 + ], + [ + 106.926696777000075, + 13.174499512000068 + ], + [ + 106.923522949000073, + 13.175476074000073 + ], + [ + 106.919311523000033, + 13.176696777000075 + ], + [ + 106.915893555000082, + 13.178527832000043 + ], + [ + 106.911682129000042, + 13.178710937000062 + ], + [ + 106.906677246000072, + 13.178710937000062 + ], + [ + 106.902709961000085, + 13.176879883000026 + ], + [ + 106.898498535000044, + 13.175109863000046 + ], + [ + 106.894287109000061, + 13.175476074000073 + ], + [ + 106.889526367000087, + 13.17608642600004 + ], + [ + 106.884521484000061, + 13.175720215000069 + ], + [ + 106.880920410000044, + 13.175109863000046 + ], + [ + 106.876708984000061, + 13.17468261700003 + ], + [ + 106.873718262000068, + 13.174316406000059 + ], + [ + 106.866882324000073, + 13.17468261700003 + ], + [ + 106.863525391000053, + 13.175109863000046 + ], + [ + 106.860717773000033, + 13.175903320000032 + ], + [ + 106.848876953000058, + 13.179687500000057 + ], + [ + 106.843688965000069, + 13.180725098000039 + ], + [ + 106.835327148000033, + 13.182922363000046 + ], + [ + 106.831909180000082, + 13.185302734000061 + ], + [ + 106.804077148000033, + 13.193115234000061 + ], + [ + 106.800903320000089, + 13.194091797000056 + ], + [ + 106.796691895000038, + 13.195312500000057 + ], + [ + 106.792480469000054, + 13.196105957000043 + ], + [ + 106.788330078000058, + 13.196899414000029 + ], + [ + 106.784118652000075, + 13.197692871000072 + ], + [ + 106.779296875000057, + 13.197875977000024 + ], + [ + 106.776306152000075, + 13.19952392600004 + ], + [ + 106.745910645000038, + 13.227478027000075 + ], + [ + 106.718505859000061, + 13.247070312000062 + ], + [ + 106.711730957000043, + 13.251892090000069 + ], + [ + 106.665527344000054, + 13.28350830100004 + ], + [ + 106.633728027000075, + 13.305480957000043 + ], + [ + 106.608093262000068, + 13.322875977000024 + ], + [ + 106.610473633000083, + 13.326110840000069 + ], + [ + 106.609497070000089, + 13.329284668000071 + ], + [ + 106.609313965000069, + 13.333312988000046 + ], + [ + 106.609130859000061, + 13.337524414000029 + ], + [ + 106.608886719000054, + 13.341125488000046 + ], + [ + 106.612487793000071, + 13.341918945000032 + ], + [ + 106.615722656000059, + 13.342529297000056 + ], + [ + 106.618530273000033, + 13.343505859000061 + ], + [ + 106.622070312000062, + 13.344726562000062 + ], + [ + 106.624877930000082, + 13.346496582000043 + ], + [ + 106.625122070000089, + 13.34991455100004 + ], + [ + 106.626281738000046, + 13.354309082000043 + ], + [ + 106.627319336000085, + 13.359130859000061 + ], + [ + 106.625671387000068, + 13.362915039000029 + ], + [ + 106.625122070000089, + 13.366271973000039 + ], + [ + 106.626892090000069, + 13.371093750000057 + ], + [ + 106.623291016000053, + 13.373474121000072 + ], + [ + 106.620910645000038, + 13.376098633000026 + ], + [ + 106.621093750000057, + 13.380310059000067 + ], + [ + 106.621276855000076, + 13.38507080100004 + ], + [ + 106.622070312000062, + 13.387878418000071 + ], + [ + 106.618103027000075, + 13.389099121000072 + ], + [ + 106.614318848000039, + 13.390319824000073 + ], + [ + 106.611694336000085, + 13.392700195000032 + ], + [ + 106.610473633000083, + 13.396728516000053 + ], + [ + 106.607299805000082, + 13.397277832000043 + ], + [ + 106.605285645000038, + 13.401489258000026 + ], + [ + 106.604919434000067, + 13.405883789000029 + ], + [ + 106.607482910000044, + 13.408081055000025 + ], + [ + 106.609313965000069, + 13.410888672000056 + ], + [ + 106.611083984000061, + 13.414489746000072 + ], + [ + 106.613708496000072, + 13.418090820000032 + ], + [ + 106.612121582000043, + 13.423095703000058 + ], + [ + 106.612487793000071, + 13.427307129000042 + ], + [ + 106.610717773000033, + 13.430480957000043 + ], + [ + 106.608093262000068, + 13.432678223000039 + ], + [ + 106.605529785000044, + 13.434692383000026 + ], + [ + 106.603271484000061, + 13.437316895000038 + ], + [ + 106.600708008000083, + 13.438476562000062 + ], + [ + 106.600280762000068, + 13.441528320000032 + ], + [ + 106.598083496000072, + 13.445495605000076 + ], + [ + 106.598327637000068, + 13.449279785000044 + ], + [ + 106.596496582000043, + 13.453918457000043 + ], + [ + 106.594482422000056, + 13.457519531000059 + ], + [ + 106.593078613000046, + 13.460327148000033 + ], + [ + 106.591491699000073, + 13.463684082000043 + ], + [ + 106.589111328000058, + 13.467529297000056 + ], + [ + 106.585693359000061, + 13.471313477000024 + ], + [ + 106.584106445000089, + 13.474487305000025 + ], + [ + 106.582519531000059, + 13.478698730000076 + ], + [ + 106.580688477000081, + 13.483520508000026 + ], + [ + 106.578674316000047, + 13.486877441000047 + ], + [ + 106.577087402000075, + 13.490295410000044 + ], + [ + 106.574890137000068, + 13.494323730000076 + ], + [ + 106.573913574000073, + 13.49890136700003 + ], + [ + 106.573486328000058, + 13.503112793000071 + ], + [ + 106.574096680000082, + 13.506896973000039 + ], + [ + 106.57452392600004, + 13.512084961000028 + ], + [ + 106.572082520000038, + 13.514892578000058 + ], + [ + 106.570312500000057, + 13.518676758000026 + ], + [ + 106.567504883000083, + 13.522094727000024 + ], + [ + 106.564697266000053, + 13.524719238000046 + ], + [ + 106.562316895000038, + 13.527099609000061 + ], + [ + 106.560302734000061, + 13.529907227000024 + ], + [ + 106.558105469000054, + 13.53350830100004 + ], + [ + 106.556518555000082, + 13.537902832000043 + ], + [ + 106.555114746000072, + 13.54132080100004 + ], + [ + 106.552490234000061, + 13.544921875000057 + ], + [ + 106.548889160000044, + 13.547485352000024 + ], + [ + 106.545715332000043, + 13.54968261700003 + ], + [ + 106.541503906000059, + 13.551879883000026 + ], + [ + 106.538085937000062, + 13.552673340000069 + ], + [ + 106.531677246000072, + 13.553100586000028 + ], + [ + 106.530273437000062, + 13.575927734000061 + ], + [ + 106.529907227000081, + 13.599670410000044 + ], + [ + 106.530700684000067, + 13.621093750000057 + ], + [ + 106.530883789000086, + 13.670288086000028 + ], + [ + 106.535278320000089, + 13.670715332000043 + ], + [ + 106.540283203000058, + 13.670898437000062 + ], + [ + 106.546081543000071, + 13.671875 + ], + [ + 106.550109863000046, + 13.672912598000039 + ], + [ + 106.554687500000057, + 13.673522949000073 + ], + [ + 106.55889892600004, + 13.675720215000069 + ], + [ + 106.562316895000038, + 13.678100586000028 + ], + [ + 106.56671142600004, + 13.680480957000043 + ], + [ + 106.569885254000042, + 13.682128906000059 + ], + [ + 106.574096680000082, + 13.682922363000046 + ], + [ + 106.578674316000047, + 13.682922363000046 + ], + [ + 106.582275391000053, + 13.682678223000039 + ], + [ + 106.586303711000085, + 13.683105469000054 + ], + [ + 106.589294434000067, + 13.686889648000033 + ], + [ + 106.594299316000047, + 13.688293457000043 + ], + [ + 106.598876953000058, + 13.690490723000039 + ], + [ + 106.603515625000057, + 13.692871094000054 + ], + [ + 106.606506348000039, + 13.696899414000029 + ], + [ + 106.610717773000033, + 13.698913574000073 + ], + [ + 106.614501953000058, + 13.700927734000061 + ], + [ + 106.617675781000059, + 13.703125 + ], + [ + 106.619873047000056, + 13.706115723000039 + ], + [ + 106.621276855000076, + 13.709899902000075 + ], + [ + 106.624328613000046, + 13.713073730000076 + ], + [ + 106.626708984000061, + 13.715270996000072 + ], + [ + 106.629272461000085, + 13.717895508000026 + ], + [ + 106.631896973000039, + 13.721496582000043 + ], + [ + 106.632873535000044, + 13.726928711000028 + ], + [ + 106.634521484000061, + 13.732116699000073 + ], + [ + 106.633728027000075, + 13.735900879000042 + ], + [ + 106.63507080100004, + 13.739074707000043 + ], + [ + 106.636474609000061, + 13.741699219000054 + ], + [ + 106.639282227000081, + 13.744689941000047 + ], + [ + 106.643310547000056, + 13.746520996000072 + ], + [ + 106.645690918000071, + 13.749084473000039 + ], + [ + 106.646911621000072, + 13.752929687000062 + ], + [ + 106.653320312000062, + 13.759704590000069 + ], + [ + 106.657287598000039, + 13.764709473000039 + ], + [ + 106.659301758000083, + 13.768493652000075 + ], + [ + 106.661926270000038, + 13.773925781000059 + ], + [ + 106.663330078000058, + 13.779296875000057 + ], + [ + 106.663330078000058, + 13.782897949000073 + ], + [ + 106.661315918000071, + 13.785095215000069 + ], + [ + 106.660888672000056, + 13.788085937000062 + ], + [ + 106.659912109000061, + 13.791076660000044 + ], + [ + 106.658691406000059, + 13.794128418000071 + ], + [ + 106.656921387000068, + 13.797302246000072 + ], + [ + 106.655273437000062, + 13.800292969000054 + ], + [ + 106.654296875000057, + 13.803283691000047 + ], + [ + 106.653503418000071, + 13.806274414000029 + ], + [ + 106.653503418000071, + 13.810302734000061 + ], + [ + 106.653930664000086, + 13.814086914000029 + ], + [ + 106.655517578000058, + 13.817687988000046 + ], + [ + 106.656677246000072, + 13.820495605000076 + ], + [ + 106.658081055000082, + 13.82312011700003 + ], + [ + 106.660888672000056, + 13.82507324200003 + ], + [ + 106.663879395000038, + 13.829895020000038 + ], + [ + 106.660705566000047, + 13.83428955100004 + ], + [ + 106.658081055000082, + 13.838073730000076 + ], + [ + 106.655090332000043, + 13.837280273000033 + ], + [ + 106.652099609000061, + 13.838500977000024 + ], + [ + 106.650512695000089, + 13.842285156000059 + ], + [ + 106.649719238000046, + 13.845092773000033 + ], + [ + 106.648925781000059, + 13.848327637000068 + ], + [ + 106.650329590000069, + 13.851318359000061 + ], + [ + 106.648071289000086, + 13.854675293000071 + ], + [ + 106.644897461000085, + 13.85632324200003 + ], + [ + 106.641906738000046, + 13.857116699000073 + ], + [ + 106.64093017600004, + 13.860107422000056 + ], + [ + 106.637329102000081, + 13.860900879000042 + ], + [ + 106.634094238000046, + 13.862670898000033 + ], + [ + 106.632507324000073, + 13.867126465000069 + ], + [ + 106.631530762000068, + 13.871276855000076 + ], + [ + 106.632873535000044, + 13.876098633000026 + ], + [ + 106.634887695000089, + 13.880676270000038 + ], + [ + 106.636718750000057, + 13.884887695000032 + ], + [ + 106.637329102000081, + 13.888671875000057 + ], + [ + 106.635681152000075, + 13.891906738000046 + ], + [ + 106.633300781000059, + 13.894714355000076 + ], + [ + 106.630920410000044, + 13.896728516000053 + ], + [ + 106.628295898000033, + 13.898925781000059 + ], + [ + 106.626525879000042, + 13.901672363000046 + ], + [ + 106.625122070000089, + 13.906494141000053 + ], + [ + 106.624328613000046, + 13.911315918000071 + ], + [ + 106.625488281000059, + 13.916503906000059 + ], + [ + 106.626525879000042, + 13.920104980000076 + ], + [ + 106.627075195000089, + 13.922912598000039 + ], + [ + 106.626098633000083, + 13.926696777000075 + ], + [ + 106.62530517600004, + 13.930725098000039 + ], + [ + 106.626098633000083, + 13.934692383000026 + ], + [ + 106.622497559000067, + 13.938293457000043 + ], + [ + 106.619506836000085, + 13.94171142600004 + ], + [ + 106.618286133000083, + 13.944702148000033 + ], + [ + 106.618896484000061, + 13.947875977000024 + ], + [ + 106.618286133000083, + 13.950683594000054 + ], + [ + 106.617919922000056, + 13.953918457000043 + ], + [ + 106.616882324000073, + 13.958679199000073 + ], + [ + 106.616271973000039, + 13.962524414000029 + ], + [ + 106.615722656000059, + 13.965270996000072 + ], + [ + 106.614318848000039, + 13.968078613000046 + ], + [ + 106.612915039000086, + 13.972900391000053 + ], + [ + 106.612487793000071, + 13.976074219000054 + ], + [ + 106.614074707000043, + 13.979309082000043 + ], + [ + 106.615905762000068, + 13.981872559000067 + ], + [ + 106.616699219000054, + 13.98468017600004 + ], + [ + 106.617675781000059, + 13.987915039000029 + ], + [ + 106.616516113000046, + 13.992309570000032 + ], + [ + 106.621276855000076, + 13.993286133000026 + ], + [ + 106.625671387000068, + 13.993713379000042 + ], + [ + 106.630126953000058, + 13.994079590000069 + ], + [ + 106.633728027000075, + 13.992309570000032 + ], + [ + 106.637695312000062, + 13.99108886700003 + ], + [ + 106.641296387000068, + 13.990112305000025 + ], + [ + 106.644470215000069, + 13.989501953000058 + ], + [ + 106.648071289000086, + 13.987670898000033 + ], + [ + 106.651123047000056, + 13.986877441000047 + ], + [ + 106.655090332000043, + 13.986694336000028 + ], + [ + 106.658874512000068, + 13.988708496000072 + ], + [ + 106.662475586000085, + 13.99108886700003 + ], + [ + 106.66632080100004, + 13.994689941000047 + ], + [ + 106.668884277000075, + 13.996704102000024 + ], + [ + 106.673095703000058, + 13.995300293000071 + ], + [ + 106.676879883000083, + 13.995727539000029 + ], + [ + 106.682128906000059, + 13.997070312000062 + ], + [ + 106.685119629000042, + 13.998291016000053 + ], + [ + 106.688476562000062, + 13.998474121000072 + ], + [ + 106.692321777000075, + 13.997070312000062 + ], + [ + 106.695678711000085, + 13.995117187000062 + ], + [ + 106.699279785000044, + 13.996276855000076 + ], + [ + 106.703308105000076, + 13.997924805000025 + ], + [ + 106.705688477000081, + 14.001708984000061 + ], + [ + 106.707702637000068, + 14.005126953000058 + ], + [ + 106.710510254000042, + 14.006286621000072 + ], + [ + 106.712707520000038, + 14.00811767600004 + ], + [ + 106.715515137000068, + 14.010681152000075 + ], + [ + 106.719482422000056, + 14.012512207000043 + ], + [ + 106.723327637000068, + 14.013671875000057 + ], + [ + 106.726074219000054, + 14.01452636700003 + ], + [ + 106.728088379000042, + 14.016906738000046 + ], + [ + 106.731506348000039, + 14.019287109000061 + ], + [ + 106.734924316000047, + 14.019287109000061 + ], + [ + 106.738281250000057, + 14.019287109000061 + ], + [ + 106.741699219000054, + 14.020324707000043 + ], + [ + 106.744873047000056, + 14.019897461000028 + ], + [ + 106.749328613000046, + 14.021118164000029 + ], + [ + 106.752502441000047, + 14.023071289000029 + ], + [ + 106.755676270000038, + 14.02569580100004 + ], + [ + 106.758300781000059, + 14.028076172000056 + ], + [ + 106.762084961000085, + 14.033691406000059 + ], + [ + 106.765502930000082, + 14.038330078000058 + ], + [ + 106.767700195000089, + 14.041076660000044 + ], + [ + 106.771728516000053, + 14.046508789000029 + ], + [ + 106.77569580100004, + 14.052124023000033 + ], + [ + 106.778320312000062, + 14.056518555000025 + ], + [ + 106.781127930000082, + 14.060119629000042 + ], + [ + 106.784484863000046, + 14.064880371000072 + ], + [ + 106.786682129000042, + 14.068481445000032 + ], + [ + 106.788513184000067, + 14.072692871000072 + ], + [ + 106.789306641000053, + 14.077697754000042 + ], + [ + 106.789123535000044, + 14.08288574200003 + ], + [ + 106.787902832000043, + 14.086730957000043 + ], + [ + 106.786315918000071, + 14.091491699000073 + ], + [ + 106.783691406000059, + 14.099670410000044 + ], + [ + 106.781127930000082, + 14.106506348000039 + ], + [ + 106.779907227000081, + 14.10968017600004 + ], + [ + 106.773681641000053, + 14.125488281000059 + ], + [ + 106.769287109000061, + 14.136108398000033 + ], + [ + 106.764892578000058, + 14.146484375000057 + ], + [ + 106.761474609000061, + 14.154724121000072 + ], + [ + 106.759704590000069, + 14.159729004000042 + ], + [ + 106.75811767600004, + 14.162475586000028 + ], + [ + 106.755310059000067, + 14.16491699200003 + ], + [ + 106.753295898000033, + 14.167480469000054 + ], + [ + 106.752075195000089, + 14.170104980000076 + ], + [ + 106.751525879000042, + 14.173706055000025 + ], + [ + 106.751525879000042, + 14.177673340000069 + ], + [ + 106.751892090000069, + 14.180908203000058 + ], + [ + 106.752075195000089, + 14.18389892600004 + ], + [ + 106.752319336000085, + 14.189086914000029 + ], + [ + 106.752319336000085, + 14.192321777000075 + ], + [ + 106.752319336000085, + 14.195922852000024 + ], + [ + 106.752685547000056, + 14.19952392600004 + ], + [ + 106.753112793000071, + 14.202880859000061 + ], + [ + 106.753295898000033, + 14.206298828000058 + ], + [ + 106.753112793000071, + 14.210327148000033 + ], + [ + 106.754272461000085, + 14.213317871000072 + ], + [ + 106.756286621000072, + 14.217285156000059 + ], + [ + 106.757507324000073, + 14.222717285000044 + ], + [ + 106.758300781000059, + 14.226684570000032 + ], + [ + 106.759277344000054, + 14.230895996000072 + ], + [ + 106.759521484000061, + 14.235900879000042 + ], + [ + 106.756530762000068, + 14.240295410000044 + ], + [ + 106.754699707000043, + 14.243530273000033 + ], + [ + 106.753906250000057, + 14.247314453000058 + ], + [ + 106.753906250000057, + 14.250915527000075 + ], + [ + 106.753295898000033, + 14.254882812000062 + ], + [ + 106.752685547000056, + 14.258728027000075 + ], + [ + 106.752319336000085, + 14.262512207000043 + ], + [ + 106.751708984000061, + 14.266296387000068 + ], + [ + 106.751098633000083, + 14.270080566000047 + ], + [ + 106.750488281000059, + 14.273925781000059 + ], + [ + 106.750122070000089, + 14.277709961000028 + ], + [ + 106.750122070000089, + 14.281677246000072 + ], + [ + 106.749328613000046, + 14.288085937000062 + ], + [ + 106.748901367000087, + 14.29187011700003 + ], + [ + 106.748474121000072, + 14.296875 + ], + [ + 106.747924805000082, + 14.304687500000057 + ], + [ + 106.748107910000044, + 14.307922363000046 + ], + [ + 106.748107910000044, + 14.311279297000056 + ], + [ + 106.747680664000086, + 14.314514160000044 + ], + [ + 106.747070312000062, + 14.322082520000038 + ], + [ + 106.746887207000043, + 14.333496094000054 + ], + [ + 106.747070312000062, + 14.346923828000058 + ], + [ + 106.747680664000086, + 14.362304687000062 + ], + [ + 106.749511719000054, + 14.365112305000025 + ], + [ + 106.749694824000073, + 14.370300293000071 + ], + [ + 106.752929687000062, + 14.377929687000062 + ], + [ + 106.755310059000067, + 14.383911133000026 + ], + [ + 106.755126953000058, + 14.386901855000076 + ], + [ + 106.758483887000068, + 14.386291504000042 + ], + [ + 106.761718750000057, + 14.38507080100004 + ], + [ + 106.764526367000087, + 14.383911133000026 + ], + [ + 106.767089844000054, + 14.382507324000073 + ], + [ + 106.769714355000076, + 14.380493164000029 + ], + [ + 106.770690918000071, + 14.377685547000056 + ], + [ + 106.770874023000033, + 14.374328613000046 + ], + [ + 106.772094727000081, + 14.371520996000072 + ], + [ + 106.775085449000073, + 14.369506836000028 + ], + [ + 106.777099609000061, + 14.366516113000046 + ], + [ + 106.777282715000069, + 14.363098145000038 + ], + [ + 106.778503418000071, + 14.360290527000075 + ], + [ + 106.782287598000039, + 14.357482910000044 + ], + [ + 106.784912109000061, + 14.352905273000033 + ], + [ + 106.785888672000056, + 14.348693848000039 + ], + [ + 106.786682129000042, + 14.345703125000057 + ], + [ + 106.787109375000057, + 14.341674805000025 + ], + [ + 106.790283203000058, + 14.34069824200003 + ], + [ + 106.793884277000075, + 14.34069824200003 + ], + [ + 106.794677734000061, + 14.336303711000028 + ], + [ + 106.796081543000071, + 14.331298828000058 + ], + [ + 106.797729492000087, + 14.326904297000056 + ], + [ + 106.801330566000047, + 14.323730469000054 + ], + [ + 106.804321289000086, + 14.320129395000038 + ], + [ + 106.807128906000059, + 14.319091797000056 + ], + [ + 106.809692383000083, + 14.317504883000026 + ], + [ + 106.812316895000038, + 14.315490723000039 + ], + [ + 106.815917969000054, + 14.312072754000042 + ], + [ + 106.820312500000057, + 14.310913086000028 + ], + [ + 106.823486328000058, + 14.311096191000047 + ], + [ + 106.82647705100004, + 14.3125 + ], + [ + 106.831298828000058, + 14.312072754000042 + ], + [ + 106.834899902000075, + 14.309326172000056 + ], + [ + 106.836730957000043, + 14.305114746000072 + ], + [ + 106.836914062000062, + 14.30108642600004 + ], + [ + 106.838073730000076, + 14.298278809000067 + ], + [ + 106.838928223000039, + 14.294128418000071 + ], + [ + 106.842895508000083, + 14.292907715000069 + ], + [ + 106.846679687000062, + 14.29327392600004 + ], + [ + 106.850524902000075, + 14.293884277000075 + ], + [ + 106.850280762000068, + 14.299316406000059 + ], + [ + 106.852111816000047, + 14.303100586000028 + ], + [ + 106.854492187000062, + 14.305480957000043 + ], + [ + 106.856872559000067, + 14.308715820000032 + ], + [ + 106.859130859000061, + 14.311279297000056 + ], + [ + 106.861877441000047, + 14.314086914000029 + ], + [ + 106.865295410000044, + 14.317504883000026 + ], + [ + 106.869323730000076, + 14.318725586000028 + ], + [ + 106.873901367000087, + 14.318481445000032 + ], + [ + 106.879699707000043, + 14.318115234000061 + ], + [ + 106.88311767600004, + 14.316528320000032 + ], + [ + 106.885925293000071, + 14.313903809000067 + ], + [ + 106.889709473000039, + 14.313720703000058 + ], + [ + 106.89288330100004, + 14.312927246000072 + ], + [ + 106.895080566000047, + 14.314697266000053 + ], + [ + 106.894714355000076, + 14.317871094000054 + ], + [ + 106.894287109000061, + 14.320922852000024 + ], + [ + 106.895080566000047, + 14.324707031000059 + ], + [ + 106.895507812000062, + 14.328674316000047 + ], + [ + 106.896301270000038, + 14.332702637000068 + ], + [ + 106.901672363000046, + 14.333312988000046 + ], + [ + 106.906311035000044, + 14.332702637000068 + ], + [ + 106.909912109000061, + 14.331298828000058 + ], + [ + 106.912902832000043, + 14.330505371000072 + ], + [ + 106.917114258000083, + 14.329895020000038 + ], + [ + 106.922119141000053, + 14.328491211000028 + ], + [ + 106.927124023000033, + 14.326904297000056 + ], + [ + 106.931701660000044, + 14.324707031000059 + ], + [ + 106.934509277000075, + 14.323913574000073 + ], + [ + 106.937683105000076, + 14.323486328000058 + ], + [ + 106.940917969000054, + 14.320922852000024 + ], + [ + 106.942871094000054, + 14.318725586000028 + ], + [ + 106.945495605000076, + 14.315124512000068 + ], + [ + 106.94952392600004, + 14.314697266000053 + ], + [ + 106.953491211000085, + 14.314697266000053 + ], + [ + 106.957275391000053, + 14.315673828000058 + ], + [ + 106.960327148000033, + 14.314880371000072 + ], + [ + 106.964111328000058, + 14.31530761700003 + ], + [ + 106.967285156000059, + 14.314880371000072 + ], + [ + 106.969299316000047, + 14.317321777000075 + ], + [ + 106.971130371000072, + 14.320495605000076 + ], + [ + 106.972717285000044, + 14.323913574000073 + ], + [ + 106.973876953000058, + 14.328125 + ], + [ + 106.976074219000054, + 14.331481934000067 + ], + [ + 106.978515625000057, + 14.334472656000059 + ], + [ + 106.975097656000059, + 14.337524414000029 + ], + [ + 106.971679687000062, + 14.34069824200003 + ], + [ + 106.972717285000044, + 14.343688965000069 + ], + [ + 106.973083496000072, + 14.347717285000044 + ], + [ + 106.973327637000068, + 14.350708008000026 + ], + [ + 106.97491455100004, + 14.353088379000042 + ], + [ + 106.976074219000054, + 14.357482910000044 + ], + [ + 106.978271484000061, + 14.359924316000047 + ], + [ + 106.981689453000058, + 14.359497070000032 + ], + [ + 106.985717773000033, + 14.359130859000061 + ], + [ + 106.989929199000073, + 14.358886719000054 + ], + [ + 106.99249267600004, + 14.35772705100004 + ], + [ + 106.995727539000086, + 14.357116699000073 + ], + [ + 106.997924805000082, + 14.360473633000026 + ], + [ + 106.999328613000046, + 14.365112305000025 + ], + [ + 107.000915527000075, + 14.369079590000069 + ], + [ + 107.002319336000085, + 14.371887207000043 + ], + [ + 107.004516602000081, + 14.375915527000075 + ], + [ + 107.006286621000072, + 14.379272461000028 + ], + [ + 107.007690430000082, + 14.382507324000073 + ], + [ + 107.008911133000083, + 14.385314941000047 + ], + [ + 107.011291504000042, + 14.386901855000076 + ], + [ + 107.014099121000072, + 14.388305664000029 + ], + [ + 107.014282227000081, + 14.392272949000073 + ], + [ + 107.015319824000073, + 14.395507812000062 + ], + [ + 107.017700195000089, + 14.397521973000039 + ], + [ + 107.021118164000086, + 14.399108887000068 + ], + [ + 107.023315430000082, + 14.402893066000047 + ], + [ + 107.027526855000076, + 14.404296875000057 + ], + [ + 107.030273437000062, + 14.406127930000025 + ], + [ + 107.03350830100004, + 14.408874512000068 + ], + [ + 107.036926270000038, + 14.413085937000062 + ], + [ + 107.041870117000087, + 14.415283203000058 + ], + [ + 107.045715332000043, + 14.416076660000044 + ], + [ + 107.045471191000047, + 14.419677734000061 + ], + [ + 107.046325684000067, + 14.424926758000026 + ], + [ + 107.043884277000075, + 14.428283691000047 + ], + [ + 107.041076660000044, + 14.433105469000054 + ], + [ + 107.040100098000039, + 14.439086914000029 + ], + [ + 107.037719727000081, + 14.443115234000061 + ], + [ + 107.037475586000085, + 14.446289062000062 + ], + [ + 107.039672852000081, + 14.448303223000039 + ], + [ + 107.042724609000061, + 14.448730469000054 + ], + [ + 107.045471191000047, + 14.446472168000071 + ], + [ + 107.048278809000067, + 14.444702148000033 + ], + [ + 107.051879883000083, + 14.440673828000058 + ], + [ + 107.055908203000058, + 14.439086914000029 + ], + [ + 107.059875488000046, + 14.439086914000029 + ], + [ + 107.062927246000072, + 14.438903809000067 + ], + [ + 107.064880371000072, + 14.435485840000069 + ], + [ + 107.06671142600004, + 14.432678223000039 + ], + [ + 107.069885254000042, + 14.429504395000038 + ], + [ + 107.073120117000087, + 14.427307129000042 + ], + [ + 107.077270508000083, + 14.425109863000046 + ], + [ + 107.078308105000076, + 14.422119141000053 + ], + [ + 107.077087402000075, + 14.419311523000033 + ], + [ + 107.075500488000046, + 14.414672852000024 + ], + [ + 107.076721191000047, + 14.411315918000071 + ], + [ + 107.078308105000076, + 14.40850830100004 + ], + [ + 107.079101562000062, + 14.404296875000057 + ], + [ + 107.081115723000039, + 14.40069580100004 + ], + [ + 107.083312988000046, + 14.396484375000057 + ], + [ + 107.086914062000062, + 14.394897461000028 + ], + [ + 107.090270996000072, + 14.395080566000047 + ], + [ + 107.093505859000061, + 14.392272949000073 + ], + [ + 107.097106934000067, + 14.393127441000047 + ], + [ + 107.100891113000046, + 14.393920898000033 + ], + [ + 107.103088379000042, + 14.395690918000071 + ], + [ + 107.107299805000082, + 14.396484375000057 + ], + [ + 107.110290527000075, + 14.393493652000075 + ], + [ + 107.113525391000053, + 14.394470215000069 + ], + [ + 107.11749267600004, + 14.395874023000033 + ], + [ + 107.121520996000072, + 14.397888184000067 + ], + [ + 107.122924805000082, + 14.400512695000032 + ], + [ + 107.123718262000068, + 14.403503418000071 + ], + [ + 107.127929687000062, + 14.405700684000067 + ], + [ + 107.132324219000054, + 14.406127930000025 + ], + [ + 107.13311767600004, + 14.409729004000042 + ], + [ + 107.134704590000069, + 14.413696289000029 + ], + [ + 107.139099121000072, + 14.415100098000039 + ], + [ + 107.142089844000054, + 14.41491699200003 + ], + [ + 107.146118164000086, + 14.41491699200003 + ], + [ + 107.148498535000044, + 14.418518066000047 + ], + [ + 107.150085449000073, + 14.421691895000038 + ], + [ + 107.152893066000047, + 14.422302246000072 + ], + [ + 107.157470703000058, + 14.421508789000029 + ], + [ + 107.159118652000075, + 14.417907715000069 + ], + [ + 107.160278320000089, + 14.414672852000024 + ], + [ + 107.163330078000058, + 14.41491699200003 + ], + [ + 107.16632080100004, + 14.417297363000046 + ], + [ + 107.169494629000042, + 14.420715332000043 + ], + [ + 107.173278809000067, + 14.422485352000024 + ], + [ + 107.175476074000073, + 14.425903320000032 + ], + [ + 107.175720215000069, + 14.431518555000025 + ], + [ + 107.178894043000071, + 14.43389892600004 + ], + [ + 107.182128906000059, + 14.436523437000062 + ], + [ + 107.186523437000062, + 14.436889648000033 + ], + [ + 107.189880371000072, + 14.438476562000062 + ], + [ + 107.192321777000075, + 14.442504883000026 + ], + [ + 107.194519043000071, + 14.446472168000071 + ], + [ + 107.196472168000071, + 14.449096680000025 + ], + [ + 107.197326660000044, + 14.451904297000056 + ], + [ + 107.196899414000086, + 14.455322266000053 + ], + [ + 107.197875977000081, + 14.45928955100004 + ], + [ + 107.197692871000072, + 14.464904785000044 + ], + [ + 107.19952392600004, + 14.469482422000056 + ], + [ + 107.200500488000046, + 14.472473145000038 + ], + [ + 107.200683594000054, + 14.475708008000026 + ], + [ + 107.203674316000047, + 14.480102539000029 + ], + [ + 107.206298828000058, + 14.482910156000059 + ], + [ + 107.206481934000067, + 14.486511230000076 + ], + [ + 107.209899902000075, + 14.488281250000057 + ], + [ + 107.214477539000086, + 14.488525391000053 + ], + [ + 107.218688965000069, + 14.487304687000062 + ], + [ + 107.220092773000033, + 14.483703613000046 + ], + [ + 107.223510742000087, + 14.483093262000068 + ], + [ + 107.228515625000057, + 14.484924316000047 + ], + [ + 107.231689453000058, + 14.48132324200003 + ], + [ + 107.236083984000061, + 14.479309082000043 + ], + [ + 107.240112305000082, + 14.480102539000029 + ], + [ + 107.243286133000083, + 14.481872559000067 + ], + [ + 107.246704102000081, + 14.48272705100004 + ], + [ + 107.249084473000039, + 14.484497070000032 + ], + [ + 107.251708984000061, + 14.485900879000042 + ], + [ + 107.254516602000081, + 14.487915039000029 + ], + [ + 107.256530762000068, + 14.490905762000068 + ], + [ + 107.258300781000059, + 14.493530273000033 + ], + [ + 107.257690430000082, + 14.496520996000072 + ], + [ + 107.255310059000067, + 14.499877930000025 + ], + [ + 107.255676270000038, + 14.505920410000044 + ], + [ + 107.254516602000081, + 14.509704590000069 + ], + [ + 107.253723145000038, + 14.513488770000038 + ], + [ + 107.253906250000057, + 14.517272949000073 + ], + [ + 107.253906250000057, + 14.521728516000053 + ], + [ + 107.256103516000053, + 14.525512695000032 + ], + [ + 107.256713867000087, + 14.528503418000071 + ], + [ + 107.258483887000068, + 14.531677246000072 + ], + [ + 107.259887695000089, + 14.536499023000033 + ], + [ + 107.261108398000033, + 14.54132080100004 + ], + [ + 107.265686035000044, + 14.543701172000056 + ], + [ + 107.270080566000047, + 14.542724609000061 + ], + [ + 107.274475098000039, + 14.541503906000059 + ], + [ + 107.278686523000033, + 14.545471191000047 + ], + [ + 107.281311035000044, + 14.548278809000067 + ], + [ + 107.282104492000087, + 14.551879883000026 + ], + [ + 107.283081055000082, + 14.555908203000058 + ], + [ + 107.284729004000042, + 14.559692383000026 + ], + [ + 107.282470703000058, + 14.563720703000058 + ], + [ + 107.282287598000039, + 14.567871094000054 + ], + [ + 107.283081055000082, + 14.570678711000028 + ], + [ + 107.286682129000042, + 14.571472168000071 + ], + [ + 107.289123535000044, + 14.574707031000059 + ], + [ + 107.287719727000081, + 14.578125 + ], + [ + 107.289306641000053, + 14.580871582000043 + ], + [ + 107.292907715000069, + 14.582275391000053 + ], + [ + 107.295288086000085, + 14.585693359000061 + ], + [ + 107.298889160000044, + 14.587524414000029 + ], + [ + 107.303100586000085, + 14.587890625000057 + ], + [ + 107.306518555000082, + 14.587890625000057 + ], + [ + 107.310729980000076, + 14.588317871000072 + ], + [ + 107.315307617000087, + 14.588317871000072 + ], + [ + 107.318908691000047, + 14.587524414000029 + ], + [ + 107.324096680000082, + 14.589721680000025 + ], + [ + 107.328918457000043, + 14.591125488000046 + ], + [ + 107.331909180000082, + 14.589111328000058 + ], + [ + 107.335693359000061, + 14.587280273000033 + ], + [ + 107.339477539000086, + 14.585083008000026 + ], + [ + 107.341674805000082, + 14.581481934000067 + ], + [ + 107.344909668000071, + 14.578491211000028 + ], + [ + 107.349121094000054, + 14.577697754000042 + ], + [ + 107.353515625000057, + 14.575317383000026 + ], + [ + 107.356689453000058, + 14.573303223000039 + ], + [ + 107.358276367000087, + 14.569885254000042 + ], + [ + 107.361511230000076, + 14.567687988000046 + ], + [ + 107.364074707000043, + 14.565490723000039 + ], + [ + 107.364685059000067, + 14.561523437000062 + ], + [ + 107.363525391000053, + 14.557312012000068 + ], + [ + 107.364501953000058, + 14.553894043000071 + ], + [ + 107.367126465000069, + 14.550292969000054 + ], + [ + 107.368286133000083, + 14.546691895000038 + ], + [ + 107.371276855000076, + 14.544311523000033 + ], + [ + 107.374694824000073, + 14.542724609000061 + ], + [ + 107.376892090000069, + 14.540283203000058 + ], + [ + 107.381713867000087, + 14.541076660000044 + ], + [ + 107.385498047000056, + 14.540710449000073 + ], + [ + 107.387084961000085, + 14.538085937000062 + ], + [ + 107.391723633000083, + 14.53991699200003 + ], + [ + 107.395080566000047, + 14.541503906000059 + ], + [ + 107.398925781000059, + 14.54187011700003 + ], + [ + 107.401916504000042, + 14.53991699200003 + ], + [ + 107.404479980000076, + 14.538330078000058 + ], + [ + 107.408691406000059, + 14.536499023000033 + ], + [ + 107.412292480000076, + 14.535522461000028 + ], + [ + 107.415893555000082, + 14.533691406000059 + ], + [ + 107.419494629000042, + 14.531311035000044 + ], + [ + 107.421081543000071, + 14.528930664000029 + ], + [ + 107.425109863000046, + 14.528076172000056 + ], + [ + 107.428894043000071, + 14.527526855000076 + ], + [ + 107.432128906000059, + 14.526306152000075 + ], + [ + 107.435302734000061, + 14.525085449000073 + ], + [ + 107.438293457000043, + 14.524475098000039 + ], + [ + 107.441528320000089, + 14.526672363000046 + ], + [ + 107.445312500000057, + 14.527526855000076 + ], + [ + 107.448730469000054, + 14.528503418000071 + ], + [ + 107.45147705100004, + 14.531127930000025 + ], + [ + 107.453674316000047, + 14.53350830100004 + ], + [ + 107.451293945000089, + 14.536071777000075 + ], + [ + 107.448730469000054, + 14.538879395000038 + ], + [ + 107.447692871000072, + 14.542297363000046 + ], + [ + 107.449707031000059, + 14.546081543000071 + ], + [ + 107.449707031000059, + 14.550292969000054 + ], + [ + 107.453308105000076, + 14.553283691000047 + ], + [ + 107.455322266000053, + 14.557312012000068 + ], + [ + 107.455322266000053, + 14.560729980000076 + ], + [ + 107.456481934000067, + 14.563476562000062 + ], + [ + 107.455688477000081, + 14.56671142600004 + ], + [ + 107.456909180000082, + 14.570678711000028 + ], + [ + 107.457885742000087, + 14.57452392600004 + ], + [ + 107.458129883000083, + 14.577880859000061 + ], + [ + 107.456298828000058, + 14.581726074000073 + ], + [ + 107.453491211000085, + 14.585083008000026 + ], + [ + 107.455078125000057, + 14.588684082000043 + ], + [ + 107.458923340000069, + 14.590270996000072 + ], + [ + 107.465087891000053, + 14.590515137000068 + ], + [ + 107.467285156000059, + 14.594299316000047 + ], + [ + 107.466491699000073, + 14.598693848000039 + ], + [ + 107.464111328000058, + 14.602722168000071 + ], + [ + 107.461730957000043, + 14.606689453000058 + ], + [ + 107.463317871000072, + 14.609313965000069 + ], + [ + 107.463500977000081, + 14.613098145000038 + ], + [ + 107.465515137000068, + 14.617126465000069 + ], + [ + 107.468505859000061, + 14.619873047000056 + ], + [ + 107.472900391000053, + 14.622314453000058 + ], + [ + 107.476318359000061, + 14.623718262000068 + ], + [ + 107.481689453000058, + 14.624877930000025 + ], + [ + 107.485717773000033, + 14.62390136700003 + ], + [ + 107.489318848000039, + 14.621887207000043 + ], + [ + 107.492919922000056, + 14.623718262000068 + ], + [ + 107.495117187000062, + 14.626525879000042 + ], + [ + 107.498474121000072, + 14.629089355000076 + ], + [ + 107.498291016000053, + 14.633300781000059 + ], + [ + 107.500915527000075, + 14.636718750000057 + ], + [ + 107.504882812000062, + 14.639099121000072 + ], + [ + 107.508300781000059, + 14.641296387000068 + ], + [ + 107.51007080100004, + 14.644470215000069 + ], + [ + 107.514099121000072, + 14.646301270000038 + ], + [ + 107.517517090000069, + 14.648071289000029 + ], + [ + 107.520080566000047, + 14.652099609000061 + ], + [ + 107.521118164000086, + 14.65710449200003 + ], + [ + 107.523498535000044, + 14.660095215000069 + ], + [ + 107.524719238000046, + 14.664672852000024 + ], + [ + 107.523925781000059, + 14.668884277000075 + ], + [ + 107.523925781000059, + 14.672485352000024 + ], + [ + 107.523681641000053, + 14.675476074000073 + ], + [ + 107.525329590000069, + 14.678894043000071 + ], + [ + 107.527099609000061, + 14.682312012000068 + ], + [ + 107.530700684000067, + 14.683715820000032 + ], + [ + 107.532287598000039, + 14.686279297000056 + ], + [ + 107.535522461000085, + 14.689086914000029 + ], + [ + 107.538696289000086, + 14.689270020000038 + ], + [ + 107.542114258000083, + 14.6875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 5.0016675996700002, + "Shape_Area": 0.88072952444999997, + "ADM1_EN": "Siemreap", + "ADM1_PCODE": "KH17", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 103.422485352000081, + 13.733703613000046 + ], + [ + 103.425720215000069, + 13.733093262000068 + ], + [ + 103.428710937000062, + 13.736328125000057 + ], + [ + 103.425109863000046, + 13.736328125000057 + ], + [ + 103.422485352000081, + 13.733703613000046 + ], + [ + 103.419494629000042, + 13.736877441000047 + ], + [ + 103.422912598000039, + 13.739501953000058 + ], + [ + 103.423706055000082, + 13.743713379000042 + ], + [ + 103.420715332000043, + 13.743103027000075 + ], + [ + 103.421691895000038, + 13.746520996000072 + ], + [ + 103.425292969000054, + 13.749694824000073 + ], + [ + 103.428710937000062, + 13.749877930000025 + ], + [ + 103.430114746000072, + 13.753479004000042 + ], + [ + 103.424316406000059, + 13.754699707000043 + ], + [ + 103.423889160000044, + 13.757690430000025 + ], + [ + 103.424682617000087, + 13.760925293000071 + ], + [ + 103.423889160000044, + 13.765686035000044 + ], + [ + 103.421081543000071, + 13.768676758000026 + ], + [ + 103.41827392600004, + 13.770690918000071 + ], + [ + 103.415283203000058, + 13.769714355000076 + ], + [ + 103.411682129000042, + 13.771911621000072 + ], + [ + 103.410095215000069, + 13.776123047000056 + ], + [ + 103.412109375000057, + 13.778320312000062 + ], + [ + 103.414123535000044, + 13.774902344000054 + ], + [ + 103.415893555000082, + 13.778076172000056 + ], + [ + 103.420104980000076, + 13.778076172000056 + ], + [ + 103.424499512000068, + 13.779113770000038 + ], + [ + 103.425720215000069, + 13.783081055000025 + ], + [ + 103.424499512000068, + 13.786499023000033 + ], + [ + 103.422912598000039, + 13.789123535000044 + ], + [ + 103.425903320000032, + 13.790527344000054 + ], + [ + 103.427917480000076, + 13.793090820000032 + ], + [ + 103.427490234000061, + 13.797119141000053 + ], + [ + 103.424926758000083, + 13.795104980000076 + ], + [ + 103.422119141000053, + 13.796875 + ], + [ + 103.424682617000087, + 13.799316406000059 + ], + [ + 103.427307129000042, + 13.800476074000073 + ], + [ + 103.430908203000058, + 13.802124023000033 + ], + [ + 103.430908203000058, + 13.807312012000068 + ], + [ + 103.434326172000056, + 13.809509277000075 + ], + [ + 103.437683105000076, + 13.811889648000033 + ], + [ + 103.440124512000068, + 13.81530761700003 + ], + [ + 103.440917969000054, + 13.818298340000069 + ], + [ + 103.436706543000071, + 13.817077637000068 + ], + [ + 103.432128906000059, + 13.817077637000068 + ], + [ + 103.429870605000076, + 13.820495605000076 + ], + [ + 103.431884766000053, + 13.82452392600004 + ], + [ + 103.427673340000069, + 13.82507324200003 + ], + [ + 103.425720215000069, + 13.829895020000038 + ], + [ + 103.423278809000067, + 13.834472656000059 + ], + [ + 103.425720215000069, + 13.836486816000047 + ], + [ + 103.425109863000046, + 13.840270996000072 + ], + [ + 103.424072266000053, + 13.844116211000028 + ], + [ + 103.423706055000082, + 13.848083496000072 + ], + [ + 103.423889160000044, + 13.853088379000042 + ], + [ + 103.421691895000038, + 13.85632324200003 + ], + [ + 103.423706055000082, + 13.859313965000069 + ], + [ + 103.427490234000061, + 13.85827636700003 + ], + [ + 103.426879883000083, + 13.861511230000076 + ], + [ + 103.427673340000069, + 13.865295410000044 + ], + [ + 103.430725098000039, + 13.866882324000073 + ], + [ + 103.430114746000072, + 13.870727539000029 + ], + [ + 103.428100586000085, + 13.874877930000025 + ], + [ + 103.425903320000032, + 13.877319336000028 + ], + [ + 103.428894043000071, + 13.880126953000058 + ], + [ + 103.433105469000054, + 13.879516602000024 + ], + [ + 103.438476562000062, + 13.880310059000067 + ], + [ + 103.440673828000058, + 13.877502441000047 + ], + [ + 103.444091797000056, + 13.880126953000058 + ], + [ + 103.444519043000071, + 13.883728027000075 + ], + [ + 103.448486328000058, + 13.883300781000059 + ], + [ + 103.451110840000069, + 13.885925293000071 + ], + [ + 103.454711914000086, + 13.887084961000028 + ], + [ + 103.456909180000082, + 13.889709473000039 + ], + [ + 103.460510254000042, + 13.892089844000054 + ], + [ + 103.465087891000053, + 13.893493652000075 + ], + [ + 103.467712402000075, + 13.894714355000076 + ], + [ + 103.470092773000033, + 13.892272949000073 + ], + [ + 103.473510742000087, + 13.893127441000047 + ], + [ + 103.476501465000069, + 13.895080566000047 + ], + [ + 103.477905273000033, + 13.89929199200003 + ], + [ + 103.480712891000053, + 13.901916504000042 + ], + [ + 103.48468017600004, + 13.900329590000069 + ], + [ + 103.488708496000072, + 13.899902344000054 + ], + [ + 103.493896484000061, + 13.900085449000073 + ], + [ + 103.497497559000067, + 13.900329590000069 + ], + [ + 103.501281738000046, + 13.89929199200003 + ], + [ + 103.505493164000086, + 13.899719238000046 + ], + [ + 103.509704590000069, + 13.898925781000059 + ], + [ + 103.512878418000071, + 13.900085449000073 + ], + [ + 103.516296387000068, + 13.899902344000054 + ], + [ + 103.518920898000033, + 13.896728516000053 + ], + [ + 103.523315430000082, + 13.898315430000025 + ], + [ + 103.526123047000056, + 13.897094727000024 + ], + [ + 103.530090332000043, + 13.897705078000058 + ], + [ + 103.531921387000068, + 13.902526855000076 + ], + [ + 103.533691406000059, + 13.898925781000059 + ], + [ + 103.537475586000085, + 13.896484375000057 + ], + [ + 103.540283203000058, + 13.899719238000046 + ], + [ + 103.544677734000061, + 13.901489258000026 + ], + [ + 103.547729492000087, + 13.901672363000046 + ], + [ + 103.548706055000082, + 13.904724121000072 + ], + [ + 103.552307129000042, + 13.905273437000062 + ], + [ + 103.554504395000038, + 13.901916504000042 + ], + [ + 103.556274414000086, + 13.905273437000062 + ], + [ + 103.556274414000086, + 13.90850830100004 + ], + [ + 103.559082031000059, + 13.906921387000068 + ], + [ + 103.5625, + 13.907714844000054 + ], + [ + 103.565673828000058, + 13.907470703000058 + ], + [ + 103.568115234000061, + 13.905883789000029 + ], + [ + 103.570312500000057, + 13.909729004000042 + ], + [ + 103.568481445000032, + 13.913330078000058 + ], + [ + 103.568725586000085, + 13.916687012000068 + ], + [ + 103.572692871000072, + 13.915100098000039 + ], + [ + 103.576293945000032, + 13.91827392600004 + ], + [ + 103.579895020000038, + 13.920104980000076 + ], + [ + 103.578308105000076, + 13.922485352000024 + ], + [ + 103.578674316000047, + 13.926513672000056 + ], + [ + 103.582519531000059, + 13.927917480000076 + ], + [ + 103.585327148000033, + 13.929504395000038 + ], + [ + 103.589111328000058, + 13.929504395000038 + ], + [ + 103.592712402000075, + 13.92608642600004 + ], + [ + 103.593688965000069, + 13.929077148000033 + ], + [ + 103.593505859000061, + 13.933288574000073 + ], + [ + 103.596313477000081, + 13.935913086000028 + ], + [ + 103.599304199000073, + 13.937927246000072 + ], + [ + 103.603271484000061, + 13.941528320000032 + ], + [ + 103.605285645000038, + 13.945922852000024 + ], + [ + 103.609313965000069, + 13.946716309000067 + ], + [ + 103.613708496000072, + 13.947509766000053 + ], + [ + 103.616088867000087, + 13.949096680000025 + ], + [ + 103.617675781000059, + 13.95147705100004 + ], + [ + 103.616699219000054, + 13.954895020000038 + ], + [ + 103.619689941000047, + 13.954711914000029 + ], + [ + 103.619689941000047, + 13.958496094000054 + ], + [ + 103.619689941000047, + 13.961914062000062 + ], + [ + 103.624511719000054, + 13.95928955100004 + ], + [ + 103.629882812000062, + 13.961730957000043 + ], + [ + 103.626892090000069, + 13.964111328000058 + ], + [ + 103.629516602000081, + 13.966674805000025 + ], + [ + 103.632507324000073, + 13.966125488000046 + ], + [ + 103.632507324000073, + 13.969482422000056 + ], + [ + 103.635498047000056, + 13.971679687000062 + ], + [ + 103.637512207000043, + 13.969482422000056 + ], + [ + 103.640502930000082, + 13.969116211000028 + ], + [ + 103.643127441000047, + 13.96569824200003 + ], + [ + 103.646911621000072, + 13.963317871000072 + ], + [ + 103.646484375000057, + 13.966491699000073 + ], + [ + 103.649108887000068, + 13.969116211000028 + ], + [ + 103.651489258000083, + 13.970886230000076 + ], + [ + 103.653503418000071, + 13.968322754000042 + ], + [ + 103.657470703000058, + 13.968505859000061 + ], + [ + 103.662719727000081, + 13.968688965000069 + ], + [ + 103.661499023000033, + 13.964904785000044 + ], + [ + 103.665100098000039, + 13.965270996000072 + ], + [ + 103.667480469000054, + 13.963684082000043 + ], + [ + 103.672302246000072, + 13.962097168000071 + ], + [ + 103.677124023000033, + 13.961120605000076 + ], + [ + 103.681884766000053, + 13.960327148000033 + ], + [ + 103.688720703000058, + 13.964904785000044 + ], + [ + 103.745483398000033, + 13.966125488000046 + ], + [ + 103.79327392600004, + 13.966308594000054 + ], + [ + 103.829711914000086, + 13.966308594000054 + ], + [ + 103.848083496000072, + 13.966491699000073 + ], + [ + 103.888305664000086, + 13.965515137000068 + ], + [ + 103.931701660000044, + 13.967285156000059 + ], + [ + 103.954528809000067, + 13.966918945000032 + ], + [ + 103.995483398000033, + 13.96710205100004 + ], + [ + 104.038513184000067, + 13.967529297000056 + ], + [ + 104.112915039000086, + 13.966674805000025 + ], + [ + 104.112121582000043, + 13.963500977000024 + ], + [ + 104.110900879000042, + 13.959899902000075 + ], + [ + 104.111511230000076, + 13.954895020000038 + ], + [ + 104.119506836000085, + 13.955688477000024 + ], + [ + 104.126281738000046, + 13.957519531000059 + ], + [ + 104.133300781000059, + 13.958496094000054 + ], + [ + 104.138488770000038, + 13.958923340000069 + ], + [ + 104.143493652000075, + 13.959106445000032 + ], + [ + 104.147888184000067, + 13.959716797000056 + ], + [ + 104.152893066000047, + 13.958312988000046 + ], + [ + 104.158081055000082, + 13.957519531000059 + ], + [ + 104.162902832000043, + 13.956298828000058 + ], + [ + 104.167114258000083, + 13.955078125000057 + ], + [ + 104.170288086000085, + 13.953674316000047 + ], + [ + 104.174682617000087, + 13.951721191000047 + ], + [ + 104.177490234000061, + 13.948730469000054 + ], + [ + 104.181091309000067, + 13.946289062000062 + ], + [ + 104.185913086000085, + 13.94171142600004 + ], + [ + 104.187316895000038, + 13.937072754000042 + ], + [ + 104.191894531000059, + 13.934509277000075 + ], + [ + 104.195922852000081, + 13.93249511700003 + ], + [ + 104.199707031000059, + 13.931701660000044 + ], + [ + 104.204711914000086, + 13.931091309000067 + ], + [ + 104.209899902000075, + 13.930908203000058 + ], + [ + 104.212524414000086, + 13.929687500000057 + ], + [ + 104.216125488000046, + 13.928283691000047 + ], + [ + 104.219726562000062, + 13.930725098000039 + ], + [ + 104.221679687000062, + 13.932922363000046 + ], + [ + 104.225891113000046, + 13.934326172000056 + ], + [ + 104.229125977000081, + 13.937683105000076 + ], + [ + 104.234313965000069, + 13.94030761700003 + ], + [ + 104.240478516000053, + 13.942871094000054 + ], + [ + 104.242675781000059, + 13.945678711000028 + ], + [ + 104.244873047000056, + 13.948303223000039 + ], + [ + 104.247924805000082, + 13.95007324200003 + ], + [ + 104.251281738000046, + 13.952270508000026 + ], + [ + 104.254516602000081, + 13.954895020000038 + ], + [ + 104.257324219000054, + 13.956481934000067 + ], + [ + 104.260681152000075, + 13.95788574200003 + ], + [ + 104.264099121000072, + 13.958312988000046 + ], + [ + 104.266906738000046, + 13.957519531000059 + ], + [ + 104.270080566000047, + 13.955078125000057 + ], + [ + 104.272705078000058, + 13.952697754000042 + ], + [ + 104.275085449000073, + 13.954895020000038 + ], + [ + 104.278686523000033, + 13.957275391000053 + ], + [ + 104.282470703000058, + 13.958923340000069 + ], + [ + 104.287109375000057, + 13.959106445000032 + ], + [ + 104.290893555000082, + 13.960083008000026 + ], + [ + 104.294311523000033, + 13.95928955100004 + ], + [ + 104.298095703000058, + 13.958312988000046 + ], + [ + 104.301513672000056, + 13.956726074000073 + ], + [ + 104.304870605000076, + 13.955688477000024 + ], + [ + 104.308715820000032, + 13.955688477000024 + ], + [ + 104.312072754000042, + 13.955078125000057 + ], + [ + 104.316284180000082, + 13.956298828000058 + ], + [ + 104.319885254000042, + 13.956726074000073 + ], + [ + 104.323486328000058, + 13.956909180000025 + ], + [ + 104.327087402000075, + 13.957702637000068 + ], + [ + 104.330871582000043, + 13.958129883000026 + ], + [ + 104.333923340000069, + 13.958129883000026 + ], + [ + 104.336914062000062, + 13.957702637000068 + ], + [ + 104.340698242000087, + 13.956298828000058 + ], + [ + 104.344726562000062, + 13.954284668000071 + ], + [ + 104.348693848000039, + 13.953674316000047 + ], + [ + 104.351318359000061, + 13.956481934000067 + ], + [ + 104.353515625000057, + 13.95928955100004 + ], + [ + 104.356323242000087, + 13.962280273000033 + ], + [ + 104.360290527000075, + 13.964477539000029 + ], + [ + 104.364318848000039, + 13.962707520000038 + ], + [ + 104.368896484000061, + 13.961120605000076 + ], + [ + 104.373718262000068, + 13.961120605000076 + ], + [ + 104.377502441000047, + 13.960876465000069 + ], + [ + 104.380493164000086, + 13.960510254000042 + ], + [ + 104.383911133000083, + 13.961914062000062 + ], + [ + 104.387695312000062, + 13.961303711000028 + ], + [ + 104.39093017600004, + 13.962524414000029 + ], + [ + 104.393676758000083, + 13.960876465000069 + ], + [ + 104.396484375000057, + 13.958679199000073 + ], + [ + 104.399719238000046, + 13.956115723000039 + ], + [ + 104.403320312000062, + 13.953918457000043 + ], + [ + 104.406921387000068, + 13.952697754000042 + ], + [ + 104.40850830100004, + 13.950317383000026 + ], + [ + 104.411071777000075, + 13.946716309000067 + ], + [ + 104.413513184000067, + 13.942077637000068 + ], + [ + 104.414672852000081, + 13.937927246000072 + ], + [ + 104.41632080100004, + 13.934875488000046 + ], + [ + 104.419677734000061, + 13.936096191000047 + ], + [ + 104.421875, + 13.938903809000067 + ], + [ + 104.425292969000054, + 13.938476562000062 + ], + [ + 104.426330566000047, + 13.935302734000061 + ], + [ + 104.424926758000083, + 13.931701660000044 + ], + [ + 104.423706055000082, + 13.927917480000076 + ], + [ + 104.423278809000067, + 13.924926758000026 + ], + [ + 104.422729492000087, + 13.921875 + ], + [ + 104.420898437000062, + 13.919128418000071 + ], + [ + 104.417480469000054, + 13.916687012000068 + ], + [ + 104.414672852000081, + 13.915100098000039 + ], + [ + 104.411499023000033, + 13.913085937000062 + ], + [ + 104.407897949000073, + 13.908874512000068 + ], + [ + 104.407470703000058, + 13.904724121000072 + ], + [ + 104.410705566000047, + 13.901123047000056 + ], + [ + 104.414672852000081, + 13.897888184000067 + ], + [ + 104.417114258000083, + 13.895690918000071 + ], + [ + 104.417297363000046, + 13.891723633000026 + ], + [ + 104.412902832000043, + 13.890502930000025 + ], + [ + 104.409118652000075, + 13.891296387000068 + ], + [ + 104.403076172000056, + 13.892700195000032 + ], + [ + 104.399291992000087, + 13.891723633000026 + ], + [ + 104.396118164000086, + 13.887084961000028 + ], + [ + 104.394714355000076, + 13.882324219000054 + ], + [ + 104.393310547000056, + 13.879516602000024 + ], + [ + 104.391723633000083, + 13.876098633000026 + ], + [ + 104.390686035000044, + 13.872070312000062 + ], + [ + 104.390319824000073, + 13.868530273000033 + ], + [ + 104.393310547000056, + 13.866882324000073 + ], + [ + 104.395690918000071, + 13.864318848000039 + ], + [ + 104.392700195000032, + 13.861694336000028 + ], + [ + 104.390319824000073, + 13.859130859000061 + ], + [ + 104.389709473000039, + 13.855529785000044 + ], + [ + 104.385498047000056, + 13.853088379000042 + ], + [ + 104.382324219000054, + 13.851501465000069 + ], + [ + 104.381896973000039, + 13.847106934000067 + ], + [ + 104.381530762000068, + 13.843078613000046 + ], + [ + 104.380310059000067, + 13.840270996000072 + ], + [ + 104.378295898000033, + 13.837890625000057 + ], + [ + 104.374877930000082, + 13.837890625000057 + ], + [ + 104.368896484000061, + 13.838684082000043 + ], + [ + 104.367919922000056, + 13.835327148000033 + ], + [ + 104.368530273000033, + 13.832519531000059 + ], + [ + 104.368530273000033, + 13.829101562000062 + ], + [ + 104.36749267600004, + 13.825683594000054 + ], + [ + 104.365478516000053, + 13.822692871000072 + ], + [ + 104.362487793000071, + 13.819702148000033 + ], + [ + 104.359497070000032, + 13.816894531000059 + ], + [ + 104.358276367000087, + 13.813476562000062 + ], + [ + 104.359313965000069, + 13.810302734000061 + ], + [ + 104.361328125000057, + 13.807922363000046 + ], + [ + 104.364501953000058, + 13.807128906000059 + ], + [ + 104.368713379000042, + 13.807922363000046 + ], + [ + 104.373474121000072, + 13.808715820000032 + ], + [ + 104.377685547000056, + 13.80889892600004 + ], + [ + 104.382080078000058, + 13.809692383000026 + ], + [ + 104.385925293000071, + 13.806701660000044 + ], + [ + 104.387695312000062, + 13.803527832000043 + ], + [ + 104.389099121000072, + 13.799499512000068 + ], + [ + 104.391296387000068, + 13.795104980000076 + ], + [ + 104.392089844000054, + 13.789489746000072 + ], + [ + 104.392700195000032, + 13.785095215000069 + ], + [ + 104.394104004000042, + 13.781677246000072 + ], + [ + 104.395690918000071, + 13.779113770000038 + ], + [ + 104.397521973000039, + 13.776672363000046 + ], + [ + 104.399902344000054, + 13.775085449000073 + ], + [ + 104.402526855000076, + 13.773315430000025 + ], + [ + 104.405883789000086, + 13.771911621000072 + ], + [ + 104.409118652000075, + 13.770874023000033 + ], + [ + 104.412902832000043, + 13.768920898000033 + ], + [ + 104.414916992000087, + 13.765502930000025 + ], + [ + 104.414672852000081, + 13.761474609000061 + ], + [ + 104.412719727000081, + 13.757507324000073 + ], + [ + 104.409729004000042, + 13.754089355000076 + ], + [ + 104.408325195000032, + 13.751281738000046 + ], + [ + 104.409301758000083, + 13.748291016000053 + ], + [ + 104.410705566000047, + 13.744506836000028 + ], + [ + 104.412902832000043, + 13.740478516000053 + ], + [ + 104.416503906000059, + 13.737915039000029 + ], + [ + 104.420471191000047, + 13.735290527000075 + ], + [ + 104.423278809000067, + 13.731689453000058 + ], + [ + 104.423889160000044, + 13.728271484000061 + ], + [ + 104.425903320000032, + 13.725097656000059 + ], + [ + 104.428283691000047, + 13.720886230000076 + ], + [ + 104.428527832000043, + 13.716491699000073 + ], + [ + 104.428527832000043, + 13.711120605000076 + ], + [ + 104.429687500000057, + 13.706481934000067 + ], + [ + 104.430297852000081, + 13.702880859000061 + ], + [ + 104.432128906000059, + 13.70007324200003 + ], + [ + 104.431091309000067, + 13.695129395000038 + ], + [ + 104.429321289000086, + 13.691284180000025 + ], + [ + 104.428100586000085, + 13.687927246000072 + ], + [ + 104.427917480000076, + 13.683288574000073 + ], + [ + 104.428710937000062, + 13.679077148000033 + ], + [ + 104.430480957000043, + 13.676513672000056 + ], + [ + 104.432495117000087, + 13.674316406000059 + ], + [ + 104.439697266000053, + 13.669677734000061 + ], + [ + 104.440307617000087, + 13.653930664000029 + ], + [ + 104.437316895000038, + 13.651306152000075 + ], + [ + 104.434509277000075, + 13.648498535000044 + ], + [ + 104.432678223000039, + 13.644470215000069 + ], + [ + 104.430908203000058, + 13.640319824000073 + ], + [ + 104.428894043000071, + 13.636718750000057 + ], + [ + 104.426330566000047, + 13.632324219000054 + ], + [ + 104.425292969000054, + 13.629516602000024 + ], + [ + 104.42608642600004, + 13.626281738000046 + ], + [ + 104.425720215000069, + 13.622680664000029 + ], + [ + 104.424499512000068, + 13.619506836000028 + ], + [ + 104.425109863000046, + 13.616271973000039 + ], + [ + 104.423278809000067, + 13.613098145000038 + ], + [ + 104.419921875000057, + 13.610717773000033 + ], + [ + 104.416076660000044, + 13.608703613000046 + ], + [ + 104.411926270000038, + 13.608093262000068 + ], + [ + 104.409118652000075, + 13.606872559000067 + ], + [ + 104.406677246000072, + 13.604309082000043 + ], + [ + 104.405273437000062, + 13.601501465000069 + ], + [ + 104.403503418000071, + 13.598876953000058 + ], + [ + 104.402526855000076, + 13.595703125000057 + ], + [ + 104.402526855000076, + 13.592529297000056 + ], + [ + 104.403503418000071, + 13.588928223000039 + ], + [ + 104.405273437000062, + 13.584106445000032 + ], + [ + 104.406311035000044, + 13.580322266000053 + ], + [ + 104.406494141000053, + 13.57647705100004 + ], + [ + 104.409118652000075, + 13.572509766000053 + ], + [ + 104.411071777000075, + 13.568115234000061 + ], + [ + 104.407897949000073, + 13.564697266000053 + ], + [ + 104.407714844000054, + 13.561279297000056 + ], + [ + 104.409301758000083, + 13.557678223000039 + ], + [ + 104.417724609000061, + 13.555297852000024 + ], + [ + 104.423278809000067, + 13.554870605000076 + ], + [ + 104.428894043000071, + 13.554077148000033 + ], + [ + 104.435729980000076, + 13.553710937000062 + ], + [ + 104.441284180000082, + 13.553894043000071 + ], + [ + 104.447692871000072, + 13.553894043000071 + ], + [ + 104.453308105000076, + 13.553527832000043 + ], + [ + 104.456909180000082, + 13.552307129000042 + ], + [ + 104.461486816000047, + 13.552917480000076 + ], + [ + 104.467285156000059, + 13.552917480000076 + ], + [ + 104.471679687000062, + 13.552917480000076 + ], + [ + 104.475524902000075, + 13.552673340000069 + ], + [ + 104.480102539000086, + 13.551879883000026 + ], + [ + 104.483703613000046, + 13.551513672000056 + ], + [ + 104.487304687000062, + 13.55108642600004 + ], + [ + 104.490905762000068, + 13.550720215000069 + ], + [ + 104.497070312000062, + 13.548522949000073 + ], + [ + 104.499877930000082, + 13.549072266000053 + ], + [ + 104.503479004000042, + 13.548095703000058 + ], + [ + 104.509094238000046, + 13.546081543000071 + ], + [ + 104.514892578000058, + 13.545288086000028 + ], + [ + 104.518493652000075, + 13.546508789000029 + ], + [ + 104.523071289000086, + 13.546081543000071 + ], + [ + 104.527099609000061, + 13.545288086000028 + ], + [ + 104.531677246000072, + 13.544921875000057 + ], + [ + 104.534729004000042, + 13.543090820000032 + ], + [ + 104.537719727000081, + 13.538696289000029 + ], + [ + 104.540283203000058, + 13.535888672000056 + ], + [ + 104.54327392600004, + 13.532714844000054 + ], + [ + 104.546691895000038, + 13.530273437000062 + ], + [ + 104.549926758000083, + 13.527893066000047 + ], + [ + 104.552673340000069, + 13.525878906000059 + ], + [ + 104.557495117000087, + 13.526306152000075 + ], + [ + 104.561706543000071, + 13.524719238000046 + ], + [ + 104.565124512000068, + 13.522888184000067 + ], + [ + 104.569274902000075, + 13.521911621000072 + ], + [ + 104.573120117000087, + 13.522094727000024 + ], + [ + 104.57647705100004, + 13.522277832000043 + ], + [ + 104.580688477000081, + 13.522705078000058 + ], + [ + 104.584472656000059, + 13.523071289000029 + ], + [ + 104.587524414000086, + 13.523681641000053 + ], + [ + 104.590698242000087, + 13.524108887000068 + ], + [ + 104.594726562000062, + 13.524108887000068 + ], + [ + 104.598327637000068, + 13.523498535000044 + ], + [ + 104.600891113000046, + 13.520690918000071 + ], + [ + 104.603515625000057, + 13.517272949000073 + ], + [ + 104.607910156000059, + 13.51452636700003 + ], + [ + 104.611877441000047, + 13.512512207000043 + ], + [ + 104.614074707000043, + 13.510314941000047 + ], + [ + 104.615905762000068, + 13.506286621000072 + ], + [ + 104.618896484000061, + 13.505493164000029 + ], + [ + 104.622924805000082, + 13.506530762000068 + ], + [ + 104.626281738000046, + 13.508728027000075 + ], + [ + 104.628906250000057, + 13.51007080100004 + ], + [ + 104.632080078000058, + 13.511474609000061 + ], + [ + 104.635925293000071, + 13.512329102000024 + ], + [ + 104.639709473000039, + 13.513671875000057 + ], + [ + 104.645080566000047, + 13.516113281000059 + ], + [ + 104.650085449000073, + 13.516723633000026 + ], + [ + 104.652526855000076, + 13.518676758000026 + ], + [ + 104.654907227000081, + 13.521301270000038 + ], + [ + 104.65850830100004, + 13.523925781000059 + ], + [ + 104.661682129000042, + 13.526123047000056 + ], + [ + 104.664916992000087, + 13.527709961000028 + ], + [ + 104.66827392600004, + 13.529724121000072 + ], + [ + 104.672302246000072, + 13.531677246000072 + ], + [ + 104.675292969000054, + 13.534484863000046 + ], + [ + 104.677917480000076, + 13.532714844000054 + ], + [ + 104.680297852000081, + 13.531127930000025 + ], + [ + 104.682922363000046, + 13.528503418000071 + ], + [ + 104.680725098000039, + 13.526306152000075 + ], + [ + 104.678710937000062, + 13.523315430000025 + ], + [ + 104.677124023000033, + 13.520324707000043 + ], + [ + 104.673889160000044, + 13.518127441000047 + ], + [ + 104.671508789000086, + 13.515502930000025 + ], + [ + 104.667480469000054, + 13.513122559000067 + ], + [ + 104.664672852000081, + 13.509277344000054 + ], + [ + 104.661682129000042, + 13.506103516000053 + ], + [ + 104.657897949000073, + 13.503906250000057 + ], + [ + 104.653930664000086, + 13.500488281000059 + ], + [ + 104.651672363000046, + 13.497680664000029 + ], + [ + 104.650085449000073, + 13.494873047000056 + ], + [ + 104.648925781000059, + 13.491699219000054 + ], + [ + 104.649475098000039, + 13.488525391000053 + ], + [ + 104.650085449000073, + 13.485717773000033 + ], + [ + 104.65069580100004, + 13.48272705100004 + ], + [ + 104.650878906000059, + 13.478881836000028 + ], + [ + 104.649719238000046, + 13.47351074200003 + ], + [ + 104.649902344000054, + 13.470092773000033 + ], + [ + 104.649719238000046, + 13.46710205100004 + ], + [ + 104.647705078000058, + 13.464721680000025 + ], + [ + 104.645690918000071, + 13.461914062000062 + ], + [ + 104.642700195000089, + 13.459472656000059 + ], + [ + 104.64093017600004, + 13.457275391000053 + ], + [ + 104.639282227000081, + 13.454895020000038 + ], + [ + 104.637329102000081, + 13.451904297000056 + ], + [ + 104.635925293000071, + 13.449096680000025 + ], + [ + 104.63507080100004, + 13.446289062000062 + ], + [ + 104.634277344000054, + 13.443481445000032 + ], + [ + 104.631713867000087, + 13.440917969000054 + ], + [ + 104.627929687000062, + 13.438903809000067 + ], + [ + 104.624877930000082, + 13.436889648000033 + ], + [ + 104.622070312000062, + 13.434509277000075 + ], + [ + 104.619506836000085, + 13.432678223000039 + ], + [ + 104.615905762000068, + 13.430114746000072 + ], + [ + 104.611511230000076, + 13.426879883000026 + ], + [ + 104.607116699000073, + 13.423889160000044 + ], + [ + 104.603698730000076, + 13.421691895000038 + ], + [ + 104.600891113000046, + 13.419921875000057 + ], + [ + 104.597900391000053, + 13.417114258000026 + ], + [ + 104.595092773000033, + 13.414123535000044 + ], + [ + 104.592712402000075, + 13.410888672000056 + ], + [ + 104.591308594000054, + 13.407714844000054 + ], + [ + 104.589904785000044, + 13.403076172000056 + ], + [ + 104.588500977000081, + 13.400329590000069 + ], + [ + 104.586914062000062, + 13.397277832000043 + ], + [ + 104.584472656000059, + 13.394714355000076 + ], + [ + 104.582092285000044, + 13.392517090000069 + ], + [ + 104.579284668000071, + 13.389282227000024 + ], + [ + 104.577087402000075, + 13.387512207000043 + ], + [ + 104.57452392600004, + 13.384704590000069 + ], + [ + 104.572692871000072, + 13.380310059000067 + ], + [ + 104.571472168000071, + 13.376892090000069 + ], + [ + 104.570495605000076, + 13.373107910000044 + ], + [ + 104.569519043000071, + 13.369506836000028 + ], + [ + 104.568115234000061, + 13.365478516000053 + ], + [ + 104.567077637000068, + 13.361694336000028 + ], + [ + 104.566894531000059, + 13.35772705100004 + ], + [ + 104.566894531000059, + 13.352478027000075 + ], + [ + 104.567077637000068, + 13.347900391000053 + ], + [ + 104.567504883000083, + 13.344482422000056 + ], + [ + 104.568115234000061, + 13.341125488000046 + ], + [ + 104.567871094000054, + 13.337707520000038 + ], + [ + 104.567871094000054, + 13.333923340000069 + ], + [ + 104.567871094000054, + 13.329895020000038 + ], + [ + 104.569274902000075, + 13.326721191000047 + ], + [ + 104.571472168000071, + 13.323303223000039 + ], + [ + 104.572326660000044, + 13.319885254000042 + ], + [ + 104.571472168000071, + 13.316528320000032 + ], + [ + 104.569091797000056, + 13.312072754000042 + ], + [ + 104.567077637000068, + 13.308105469000054 + ], + [ + 104.566101074000073, + 13.304870605000076 + ], + [ + 104.565124512000068, + 13.300476074000073 + ], + [ + 104.564880371000072, + 13.296691895000038 + ], + [ + 104.565673828000058, + 13.292724609000061 + ], + [ + 104.56671142600004, + 13.289672852000024 + ], + [ + 104.567871094000054, + 13.286071777000075 + ], + [ + 104.569091797000056, + 13.283325195000032 + ], + [ + 104.570678711000085, + 13.278930664000029 + ], + [ + 104.571716309000067, + 13.273681641000053 + ], + [ + 104.570922852000081, + 13.270324707000043 + ], + [ + 104.569519043000071, + 13.266296387000068 + ], + [ + 104.567871094000054, + 13.262695312000062 + ], + [ + 104.565917969000054, + 13.257080078000058 + ], + [ + 104.565490723000039, + 13.253112793000071 + ], + [ + 104.564514160000044, + 13.249084473000039 + ], + [ + 104.563903809000067, + 13.245117187000062 + ], + [ + 104.561889648000033, + 13.239318848000039 + ], + [ + 104.560302734000061, + 13.235107422000056 + ], + [ + 104.558715820000032, + 13.229919434000067 + ], + [ + 104.557312012000068, + 13.225708008000026 + ], + [ + 104.555480957000043, + 13.221130371000072 + ], + [ + 104.553527832000043, + 13.216125488000046 + ], + [ + 104.552124023000033, + 13.213073730000076 + ], + [ + 104.549072266000053, + 13.207092285000044 + ], + [ + 104.545104980000076, + 13.204895020000038 + ], + [ + 104.540710449000073, + 13.203674316000047 + ], + [ + 104.537109375000057, + 13.202880859000061 + ], + [ + 104.531921387000068, + 13.200927734000061 + ], + [ + 104.528686523000033, + 13.200317383000026 + ], + [ + 104.524108887000068, + 13.198730469000054 + ], + [ + 104.518676758000083, + 13.196899414000029 + ], + [ + 104.514282227000081, + 13.195678711000028 + ], + [ + 104.511291504000042, + 13.194702148000033 + ], + [ + 104.506103516000053, + 13.192321777000075 + ], + [ + 104.501708984000061, + 13.188720703000058 + ], + [ + 104.496704102000081, + 13.184875488000046 + ], + [ + 104.492126465000069, + 13.184082031000059 + ], + [ + 104.487670898000033, + 13.183471680000025 + ], + [ + 104.484130859000061, + 13.181884766000053 + ], + [ + 104.481872559000067, + 13.179870605000076 + ], + [ + 104.479309082000043, + 13.176696777000075 + ], + [ + 104.477294922000056, + 13.172119141000053 + ], + [ + 104.475891113000046, + 13.167907715000069 + ], + [ + 104.474304199000073, + 13.164123535000044 + ], + [ + 104.472900391000053, + 13.160095215000069 + ], + [ + 104.472106934000067, + 13.156921387000068 + ], + [ + 104.471679687000062, + 13.153930664000029 + ], + [ + 104.471679687000062, + 13.150512695000032 + ], + [ + 104.473327637000068, + 13.146728516000053 + ], + [ + 104.472900391000053, + 13.142700195000032 + ], + [ + 104.474670410000044, + 13.13952636700003 + ], + [ + 104.473693848000039, + 13.135681152000075 + ], + [ + 104.472106934000067, + 13.131530762000068 + ], + [ + 104.470703125000057, + 13.126708984000061 + ], + [ + 104.470886230000076, + 13.121887207000043 + ], + [ + 104.471313477000081, + 13.118103027000075 + ], + [ + 104.471679687000062, + 13.114501953000058 + ], + [ + 104.471923828000058, + 13.110900879000042 + ], + [ + 104.471679687000062, + 13.106079102000024 + ], + [ + 104.470886230000076, + 13.100891113000046 + ], + [ + 104.470520020000038, + 13.097473145000038 + ], + [ + 104.470703125000057, + 13.092712402000075 + ], + [ + 104.470703125000057, + 13.087097168000071 + ], + [ + 104.469909668000071, + 13.082702637000068 + ], + [ + 104.469116211000085, + 13.078125 + ], + [ + 104.468322754000042, + 13.073303223000039 + ], + [ + 104.46710205100004, + 13.068115234000061 + ], + [ + 104.466308594000054, + 13.064086914000029 + ], + [ + 104.466125488000046, + 13.060913086000028 + ], + [ + 104.466491699000073, + 13.056884766000053 + ], + [ + 104.466491699000073, + 13.052490234000061 + ], + [ + 104.465515137000068, + 13.047912598000039 + ], + [ + 104.460876465000069, + 13.049499512000068 + ], + [ + 104.458312988000046, + 13.046508789000029 + ], + [ + 104.454711914000086, + 13.044128418000071 + ], + [ + 104.453674316000047, + 13.040283203000058 + ], + [ + 104.452697754000042, + 13.035705566000047 + ], + [ + 104.453308105000076, + 13.029907227000024 + ], + [ + 104.452270508000083, + 13.023925781000059 + ], + [ + 104.453491211000085, + 13.020507812000062 + ], + [ + 104.456298828000058, + 13.01788330100004 + ], + [ + 104.459899902000075, + 13.015502930000025 + ], + [ + 104.460510254000042, + 13.012084961000028 + ], + [ + 104.458679199000073, + 13.009277344000054 + ], + [ + 104.457519531000059, + 13.006103516000053 + ], + [ + 104.456115723000039, + 13.001525879000042 + ], + [ + 104.452270508000083, + 13.002929687000062 + ], + [ + 104.448730469000054, + 13.001708984000061 + ], + [ + 104.446716309000067, + 12.998107910000044 + ], + [ + 104.445678711000085, + 12.993896484000061 + ], + [ + 104.443298340000069, + 12.989074707000043 + ], + [ + 104.440124512000068, + 12.985900879000042 + ], + [ + 104.436706543000071, + 12.984497070000032 + ], + [ + 104.433715820000032, + 12.985290527000075 + ], + [ + 104.430725098000039, + 12.985473633000026 + ], + [ + 104.427490234000061, + 12.986083984000061 + ], + [ + 104.424072266000053, + 12.986328125000057 + ], + [ + 104.420898437000062, + 12.983886719000054 + ], + [ + 104.41827392600004, + 12.981079102000024 + ], + [ + 104.415893555000082, + 12.978271484000061 + ], + [ + 104.413513184000067, + 12.974670410000044 + ], + [ + 104.411071777000075, + 12.971496582000043 + ], + [ + 104.409118652000075, + 12.968688965000069 + ], + [ + 104.407714844000054, + 12.966125488000046 + ], + [ + 104.405883789000086, + 12.963073730000076 + ], + [ + 104.404113770000038, + 12.960083008000026 + ], + [ + 104.400878906000059, + 12.956909180000025 + ], + [ + 104.396911621000072, + 12.954711914000029 + ], + [ + 104.392517090000069, + 12.955322266000053 + ], + [ + 104.388671875000057, + 12.951293945000032 + ], + [ + 104.386108398000033, + 12.948303223000039 + ], + [ + 104.382507324000073, + 12.945495605000076 + ], + [ + 104.379272461000085, + 12.940673828000058 + ], + [ + 104.377319336000085, + 12.937316895000038 + ], + [ + 104.374328613000046, + 12.936279297000056 + ], + [ + 104.371704102000081, + 12.933105469000054 + ], + [ + 104.370727539000086, + 12.929321289000029 + ], + [ + 104.368530273000033, + 12.925903320000032 + ], + [ + 104.369079590000069, + 12.922485352000024 + ], + [ + 104.370117187000062, + 12.919494629000042 + ], + [ + 104.368713379000042, + 12.915893555000025 + ], + [ + 104.367309570000032, + 12.913085937000062 + ], + [ + 104.365478516000053, + 12.909484863000046 + ], + [ + 104.363281250000057, + 12.905090332000043 + ], + [ + 104.360717773000033, + 12.901916504000042 + ], + [ + 104.357116699000073, + 12.900329590000069 + ], + [ + 104.353881836000085, + 12.898498535000044 + ], + [ + 104.351074219000054, + 12.895324707000043 + ], + [ + 104.347473145000038, + 12.897521973000039 + ], + [ + 104.344299316000047, + 12.897888184000067 + ], + [ + 104.339721680000082, + 12.897094727000024 + ], + [ + 104.33428955100004, + 12.895324707000043 + ], + [ + 104.329284668000071, + 12.89147949200003 + ], + [ + 104.325317383000083, + 12.889099121000072 + ], + [ + 104.322326660000044, + 12.888305664000029 + ], + [ + 104.319885254000042, + 12.886291504000042 + ], + [ + 104.317077637000068, + 12.884704590000069 + ], + [ + 104.312927246000072, + 12.884094238000046 + ], + [ + 104.308471680000082, + 12.885314941000047 + ], + [ + 104.307128906000059, + 12.882507324000073 + ], + [ + 104.303894043000071, + 12.879089355000076 + ], + [ + 104.299499512000068, + 12.878906250000057 + ], + [ + 104.296325684000067, + 12.876892090000069 + ], + [ + 104.292907715000069, + 12.877929687000062 + ], + [ + 104.289306641000053, + 12.877929687000062 + ], + [ + 104.285095215000069, + 12.876098633000026 + ], + [ + 104.280517578000058, + 12.874694824000073 + ], + [ + 104.281311035000044, + 12.869689941000047 + ], + [ + 104.278320312000062, + 12.865905762000068 + ], + [ + 104.274719238000046, + 12.864929199000073 + ], + [ + 104.270507812000062, + 12.866882324000073 + ], + [ + 104.267089844000054, + 12.864074707000043 + ], + [ + 104.26788330100004, + 12.861083984000061 + ], + [ + 104.268310547000056, + 12.856872559000067 + ], + [ + 104.265075684000067, + 12.854125977000024 + ], + [ + 104.261718750000057, + 12.851318359000061 + ], + [ + 104.259277344000054, + 12.848876953000058 + ], + [ + 104.256103516000053, + 12.846130371000072 + ], + [ + 104.253479004000042, + 12.842895508000026 + ], + [ + 104.251098633000083, + 12.840087891000053 + ], + [ + 104.248291016000053, + 12.837097168000071 + ], + [ + 104.246093750000057, + 12.83428955100004 + ], + [ + 104.244506836000085, + 12.831726074000073 + ], + [ + 104.244079590000069, + 12.828674316000047 + ], + [ + 104.242309570000032, + 12.826110840000069 + ], + [ + 104.239318848000039, + 12.822509766000053 + ], + [ + 104.237304687000062, + 12.819091797000056 + ], + [ + 104.234924316000047, + 12.81671142600004 + ], + [ + 104.232482910000044, + 12.814880371000072 + ], + [ + 104.232910156000059, + 12.811706543000071 + ], + [ + 104.232299805000082, + 12.808715820000032 + ], + [ + 104.229125977000081, + 12.807312012000068 + ], + [ + 104.227111816000047, + 12.804321289000029 + ], + [ + 104.228881836000085, + 12.801330566000047 + ], + [ + 104.228088379000042, + 12.798522949000073 + ], + [ + 104.224304199000073, + 12.799072266000053 + ], + [ + 104.221130371000072, + 12.799926758000026 + ], + [ + 104.219482422000056, + 12.795898437000062 + ], + [ + 104.216125488000046, + 12.794311523000033 + ], + [ + 104.214294434000067, + 12.79187011700003 + ], + [ + 104.212707520000038, + 12.789489746000072 + ], + [ + 104.211303711000085, + 12.785888672000056 + ], + [ + 104.209899902000075, + 12.78210449200003 + ], + [ + 104.205871582000043, + 12.779724121000072 + ], + [ + 104.203308105000076, + 12.783081055000025 + ], + [ + 104.202514648000033, + 12.786499023000033 + ], + [ + 104.20147705100004, + 12.790283203000058 + ], + [ + 104.200683594000054, + 12.794494629000042 + ], + [ + 104.200073242000087, + 12.798278809000067 + ], + [ + 104.199279785000044, + 12.801696777000075 + ], + [ + 104.198120117000087, + 12.804687500000057 + ], + [ + 104.196899414000086, + 12.807312012000068 + ], + [ + 104.195312500000057, + 12.811706543000071 + ], + [ + 104.193298340000069, + 12.816284180000025 + ], + [ + 104.191101074000073, + 12.820312500000057 + ], + [ + 104.189514160000044, + 12.823486328000058 + ], + [ + 104.188293457000043, + 12.826293945000032 + ], + [ + 104.186523437000062, + 12.829895020000038 + ], + [ + 104.18389892600004, + 12.833923340000069 + ], + [ + 104.181518555000082, + 12.837890625000057 + ], + [ + 104.178710937000062, + 12.842285156000059 + ], + [ + 104.176513672000056, + 12.845703125000057 + ], + [ + 104.173095703000058, + 12.850708008000026 + ], + [ + 104.170898437000062, + 12.853881836000028 + ], + [ + 104.168518066000047, + 12.857482910000044 + ], + [ + 104.165893555000082, + 12.861877441000047 + ], + [ + 104.163513184000067, + 12.865905762000068 + ], + [ + 104.160888672000056, + 12.869323730000076 + ], + [ + 104.158325195000032, + 12.872314453000058 + ], + [ + 104.157104492000087, + 12.875488281000059 + ], + [ + 104.157104492000087, + 12.878906250000057 + ], + [ + 104.156127930000082, + 12.881896973000039 + ], + [ + 104.154907227000081, + 12.886108398000033 + ], + [ + 104.153930664000086, + 12.891113281000059 + ], + [ + 104.152526855000076, + 12.895080566000047 + ], + [ + 104.151672363000046, + 12.898071289000029 + ], + [ + 104.152099609000061, + 12.901123047000056 + ], + [ + 104.154296875000057, + 12.904907227000024 + ], + [ + 104.157897949000073, + 12.910888672000056 + ], + [ + 104.158691406000059, + 12.915893555000025 + ], + [ + 104.158081055000082, + 12.919921875000057 + ], + [ + 104.156921387000068, + 12.923095703000058 + ], + [ + 104.155517578000058, + 12.926879883000026 + ], + [ + 104.153930664000086, + 12.930725098000039 + ], + [ + 104.152893066000047, + 12.93389892600004 + ], + [ + 104.151672363000046, + 12.936706543000071 + ], + [ + 104.15069580100004, + 12.939514160000044 + ], + [ + 104.149475098000039, + 12.942077637000068 + ], + [ + 104.148315430000082, + 12.945129395000038 + ], + [ + 104.146118164000086, + 12.948303223000039 + ], + [ + 104.142272949000073, + 12.94952392600004 + ], + [ + 104.138671875000057, + 12.95007324200003 + ], + [ + 104.135681152000075, + 12.95007324200003 + ], + [ + 104.133911133000083, + 12.952514648000033 + ], + [ + 104.132080078000058, + 12.956298828000058 + ], + [ + 104.128906250000057, + 12.957702637000068 + ], + [ + 104.126098633000083, + 12.961303711000028 + ], + [ + 104.124694824000073, + 12.965087891000053 + ], + [ + 104.124328613000046, + 12.968688965000069 + ], + [ + 104.122680664000086, + 12.971496582000043 + ], + [ + 104.120910645000038, + 12.97491455100004 + ], + [ + 104.120727539000086, + 12.979125977000024 + ], + [ + 104.120727539000086, + 12.983703613000046 + ], + [ + 104.118713379000042, + 12.987487793000071 + ], + [ + 104.116699219000054, + 12.991699219000054 + ], + [ + 104.116088867000087, + 12.995300293000071 + ], + [ + 104.115295410000044, + 12.999694824000073 + ], + [ + 104.114074707000043, + 13.003723145000038 + ], + [ + 104.113098145000038, + 13.006896973000039 + ], + [ + 104.112304687000062, + 13.010498047000056 + ], + [ + 104.111511230000076, + 13.013671875000057 + ], + [ + 104.110290527000075, + 13.01788330100004 + ], + [ + 104.107910156000059, + 13.023315430000025 + ], + [ + 104.106079102000081, + 13.028686523000033 + ], + [ + 104.105102539000086, + 13.032897949000073 + ], + [ + 104.104125977000081, + 13.035705566000047 + ], + [ + 104.102905273000033, + 13.038879395000038 + ], + [ + 104.101928711000085, + 13.042297363000046 + ], + [ + 104.100891113000046, + 13.045471191000047 + ], + [ + 104.099670410000044, + 13.048278809000067 + ], + [ + 104.098693848000039, + 13.05108642600004 + ], + [ + 104.097473145000038, + 13.054321289000029 + ], + [ + 104.096130371000072, + 13.058288574000073 + ], + [ + 104.095275879000042, + 13.061279297000056 + ], + [ + 104.094116211000085, + 13.064086914000029 + ], + [ + 104.09210205100004, + 13.068298340000069 + ], + [ + 104.090698242000087, + 13.071716309000067 + ], + [ + 104.089294434000067, + 13.07452392600004 + ], + [ + 104.086914062000062, + 13.078918457000043 + ], + [ + 104.085083008000083, + 13.082519531000059 + ], + [ + 104.083496094000054, + 13.086120605000076 + ], + [ + 104.081726074000073, + 13.089294434000067 + ], + [ + 104.080078125000057, + 13.092529297000056 + ], + [ + 104.078125, + 13.095275879000042 + ], + [ + 104.076293945000032, + 13.097473145000038 + ], + [ + 104.07452392600004, + 13.100708008000026 + ], + [ + 104.073303223000039, + 13.105529785000044 + ], + [ + 104.070495605000076, + 13.107910156000059 + ], + [ + 104.068115234000061, + 13.111877441000047 + ], + [ + 104.066284180000082, + 13.114929199000073 + ], + [ + 104.063720703000058, + 13.118896484000061 + ], + [ + 104.060485840000069, + 13.12390136700003 + ], + [ + 104.057922363000046, + 13.127929687000062 + ], + [ + 104.055297852000081, + 13.13171386700003 + ], + [ + 104.053100586000085, + 13.134094238000046 + ], + [ + 104.050292969000054, + 13.137329102000024 + ], + [ + 104.047729492000087, + 13.140686035000044 + ], + [ + 104.045288086000085, + 13.143493652000075 + ], + [ + 104.042297363000046, + 13.146911621000072 + ], + [ + 104.038879395000038, + 13.151123047000056 + ], + [ + 104.036071777000075, + 13.154296875000057 + ], + [ + 104.033874512000068, + 13.156921387000068 + ], + [ + 104.031921387000068, + 13.159484863000046 + ], + [ + 104.030090332000043, + 13.161926270000038 + ], + [ + 104.027526855000076, + 13.165100098000039 + ], + [ + 104.023925781000059, + 13.168090820000032 + ], + [ + 104.020690918000071, + 13.170288086000028 + ], + [ + 104.017517090000069, + 13.173095703000058 + ], + [ + 104.012695312000062, + 13.176513672000056 + ], + [ + 104.008728027000075, + 13.179077148000033 + ], + [ + 104.005126953000058, + 13.181701660000044 + ], + [ + 104.002319336000085, + 13.183288574000073 + ], + [ + 103.998901367000087, + 13.185729980000076 + ], + [ + 103.994689941000047, + 13.188293457000043 + ], + [ + 103.991088867000087, + 13.190490723000039 + ], + [ + 103.986877441000047, + 13.193115234000061 + ], + [ + 103.98272705100004, + 13.194702148000033 + ], + [ + 103.979675293000071, + 13.195312500000057 + ], + [ + 103.976501465000069, + 13.195495605000076 + ], + [ + 103.973083496000072, + 13.195129395000038 + ], + [ + 103.969909668000071, + 13.194885254000042 + ], + [ + 103.966491699000073, + 13.196289062000062 + ], + [ + 103.963684082000043, + 13.197692871000072 + ], + [ + 103.960510254000042, + 13.199707031000059 + ], + [ + 103.956726074000073, + 13.202514648000033 + ], + [ + 103.951904297000056, + 13.204711914000029 + ], + [ + 103.947692871000072, + 13.206298828000058 + ], + [ + 103.944274902000075, + 13.208496094000054 + ], + [ + 103.940917969000054, + 13.209716797000056 + ], + [ + 103.937927246000072, + 13.210083008000026 + ], + [ + 103.934875488000046, + 13.211120605000076 + ], + [ + 103.930297852000081, + 13.209106445000032 + ], + [ + 103.925903320000032, + 13.210083008000026 + ], + [ + 103.922912598000039, + 13.211303711000028 + ], + [ + 103.920288086000085, + 13.213073730000076 + ], + [ + 103.917297363000046, + 13.213684082000043 + ], + [ + 103.914489746000072, + 13.212524414000029 + ], + [ + 103.911315918000071, + 13.211303711000028 + ], + [ + 103.907104492000087, + 13.211486816000047 + ], + [ + 103.904296875000057, + 13.213073730000076 + ], + [ + 103.902099609000061, + 13.215087891000053 + ], + [ + 103.899108887000068, + 13.217895508000026 + ], + [ + 103.895507812000062, + 13.219909668000071 + ], + [ + 103.891296387000068, + 13.221130371000072 + ], + [ + 103.887084961000085, + 13.220703125000057 + ], + [ + 103.883483887000068, + 13.219726562000062 + ], + [ + 103.879516602000081, + 13.221679687000062 + ], + [ + 103.877075195000032, + 13.22351074200003 + ], + [ + 103.873291016000053, + 13.225524902000075 + ], + [ + 103.869689941000047, + 13.227111816000047 + ], + [ + 103.867126465000069, + 13.228271484000061 + ], + [ + 103.863281250000057, + 13.230102539000029 + ], + [ + 103.858886719000054, + 13.23132324200003 + ], + [ + 103.855285645000038, + 13.23132324200003 + ], + [ + 103.851318359000061, + 13.230712891000053 + ], + [ + 103.845886230000076, + 13.229492187000062 + ], + [ + 103.842285156000059, + 13.227905273000033 + ], + [ + 103.838928223000039, + 13.228881836000028 + ], + [ + 103.836303711000085, + 13.230529785000044 + ], + [ + 103.833129883000083, + 13.232910156000059 + ], + [ + 103.829284668000071, + 13.235107422000056 + ], + [ + 103.826293945000032, + 13.236083984000061 + ], + [ + 103.821716309000067, + 13.236694336000028 + ], + [ + 103.816528320000032, + 13.236694336000028 + ], + [ + 103.813293457000043, + 13.235900879000042 + ], + [ + 103.809326172000056, + 13.236083984000061 + ], + [ + 103.805908203000058, + 13.237487793000071 + ], + [ + 103.802307129000042, + 13.240112305000025 + ], + [ + 103.799072266000053, + 13.242675781000059 + ], + [ + 103.795104980000076, + 13.243103027000075 + ], + [ + 103.791870117000087, + 13.241882324000073 + ], + [ + 103.788879395000038, + 13.242675781000059 + ], + [ + 103.785095215000069, + 13.242919922000056 + ], + [ + 103.781677246000072, + 13.241699219000054 + ], + [ + 103.777893066000047, + 13.242675781000059 + ], + [ + 103.774902344000054, + 13.244873047000056 + ], + [ + 103.773315430000082, + 13.247314453000058 + ], + [ + 103.768493652000075, + 13.248291016000053 + ], + [ + 103.764282227000081, + 13.249084473000039 + ], + [ + 103.76007080100004, + 13.250122070000032 + ], + [ + 103.755920410000044, + 13.251892090000069 + ], + [ + 103.751525879000042, + 13.252685547000056 + ], + [ + 103.748291016000053, + 13.253112793000071 + ], + [ + 103.745727539000086, + 13.255126953000058 + ], + [ + 103.742309570000032, + 13.25671386700003 + ], + [ + 103.737915039000086, + 13.258300781000059 + ], + [ + 103.732482910000044, + 13.26007080100004 + ], + [ + 103.727111816000047, + 13.261901855000076 + ], + [ + 103.723876953000058, + 13.263305664000029 + ], + [ + 103.720703125000057, + 13.264099121000072 + ], + [ + 103.71710205100004, + 13.263305664000029 + ], + [ + 103.715087891000053, + 13.260314941000047 + ], + [ + 103.716674805000082, + 13.256103516000053 + ], + [ + 103.713928223000039, + 13.257080078000058 + ], + [ + 103.710876465000069, + 13.261474609000061 + ], + [ + 103.707702637000068, + 13.264282227000024 + ], + [ + 103.706481934000067, + 13.267517090000069 + ], + [ + 103.704101562000062, + 13.271301270000038 + ], + [ + 103.70147705100004, + 13.273498535000044 + ], + [ + 103.698486328000058, + 13.276123047000056 + ], + [ + 103.694274902000075, + 13.278686523000033 + ], + [ + 103.690490723000039, + 13.281494141000053 + ], + [ + 103.687072754000042, + 13.28350830100004 + ], + [ + 103.683288574000073, + 13.286071777000075 + ], + [ + 103.677917480000076, + 13.284729004000042 + ], + [ + 103.678283691000047, + 13.281311035000044 + ], + [ + 103.675109863000046, + 13.278503418000071 + ], + [ + 103.672119141000053, + 13.276306152000075 + ], + [ + 103.669494629000042, + 13.274719238000046 + ], + [ + 103.667114258000083, + 13.276306152000075 + ], + [ + 103.664306641000053, + 13.278930664000029 + ], + [ + 103.661682129000042, + 13.283325195000032 + ], + [ + 103.657470703000058, + 13.284912109000061 + ], + [ + 103.654907227000081, + 13.286315918000071 + ], + [ + 103.653076172000056, + 13.289123535000044 + ], + [ + 103.649291992000087, + 13.290893555000025 + ], + [ + 103.646118164000086, + 13.29327392600004 + ], + [ + 103.643127441000047, + 13.294128418000071 + ], + [ + 103.639526367000087, + 13.292907715000069 + ], + [ + 103.635681152000075, + 13.29327392600004 + ], + [ + 103.632080078000058, + 13.295715332000043 + ], + [ + 103.627685547000056, + 13.297912598000039 + ], + [ + 103.624084473000039, + 13.297912598000039 + ], + [ + 103.620483398000033, + 13.296325684000067 + ], + [ + 103.616699219000054, + 13.295715332000043 + ], + [ + 103.613708496000072, + 13.295288086000028 + ], + [ + 103.610473633000083, + 13.292297363000046 + ], + [ + 103.606506348000039, + 13.293884277000075 + ], + [ + 103.603271484000061, + 13.295471191000047 + ], + [ + 103.59991455100004, + 13.293884277000075 + ], + [ + 103.596313477000081, + 13.293884277000075 + ], + [ + 103.592895508000083, + 13.294128418000071 + ], + [ + 103.589721680000082, + 13.296875 + ], + [ + 103.586914062000062, + 13.300476074000073 + ], + [ + 103.585876465000069, + 13.304077148000033 + ], + [ + 103.584106445000032, + 13.307312012000068 + ], + [ + 103.582275391000053, + 13.310119629000042 + ], + [ + 103.580078125000057, + 13.313903809000067 + ], + [ + 103.574707031000059, + 13.312927246000072 + ], + [ + 103.571716309000067, + 13.313293457000043 + ], + [ + 103.568725586000085, + 13.312927246000072 + ], + [ + 103.566528320000032, + 13.310485840000069 + ], + [ + 103.563293457000043, + 13.310302734000061 + ], + [ + 103.560729980000076, + 13.311523437000062 + ], + [ + 103.558288574000073, + 13.313476562000062 + ], + [ + 103.556701660000044, + 13.316528320000032 + ], + [ + 103.556518555000082, + 13.319885254000042 + ], + [ + 103.556518555000082, + 13.323486328000058 + ], + [ + 103.553527832000043, + 13.327270508000026 + ], + [ + 103.553100586000085, + 13.331909180000025 + ], + [ + 103.548706055000082, + 13.334472656000059 + ], + [ + 103.542907715000069, + 13.337280273000033 + ], + [ + 103.537292480000076, + 13.338317871000072 + ], + [ + 103.532104492000087, + 13.339294434000067 + ], + [ + 103.528503418000071, + 13.340881348000039 + ], + [ + 103.527709961000085, + 13.344482422000056 + ], + [ + 103.526916504000042, + 13.348083496000072 + ], + [ + 103.523071289000086, + 13.350280762000068 + ], + [ + 103.518310547000056, + 13.350891113000046 + ], + [ + 103.513305664000086, + 13.351684570000032 + ], + [ + 103.509521484000061, + 13.352478027000075 + ], + [ + 103.506103516000053, + 13.352722168000071 + ], + [ + 103.502075195000032, + 13.351074219000054 + ], + [ + 103.498107910000044, + 13.348327637000068 + ], + [ + 103.493713379000042, + 13.344482422000056 + ], + [ + 103.488708496000072, + 13.346130371000072 + ], + [ + 103.48468017600004, + 13.348327637000068 + ], + [ + 103.481323242000087, + 13.351318359000061 + ], + [ + 103.477111816000047, + 13.353698730000076 + ], + [ + 103.473693848000039, + 13.351074219000054 + ], + [ + 103.470520020000038, + 13.34851074200003 + ], + [ + 103.46710205100004, + 13.346313477000024 + ], + [ + 103.463073730000076, + 13.346496582000043 + ], + [ + 103.45928955100004, + 13.348693848000039 + ], + [ + 103.455871582000043, + 13.353271484000061 + ], + [ + 103.451293945000032, + 13.353515625000057 + ], + [ + 103.448913574000073, + 13.356079102000024 + ], + [ + 103.445495605000076, + 13.355895996000072 + ], + [ + 103.443115234000061, + 13.35772705100004 + ], + [ + 103.440490723000039, + 13.360107422000056 + ], + [ + 103.437316895000038, + 13.358520508000026 + ], + [ + 103.434875488000046, + 13.361083984000061 + ], + [ + 103.430725098000039, + 13.362304687000062 + ], + [ + 103.426696777000075, + 13.362670898000033 + ], + [ + 103.424926758000083, + 13.364929199000073 + ], + [ + 103.422729492000087, + 13.36749267600004 + ], + [ + 103.419494629000042, + 13.368286133000026 + ], + [ + 103.416076660000044, + 13.368286133000026 + ], + [ + 103.414916992000087, + 13.371520996000072 + ], + [ + 103.413879395000038, + 13.375915527000075 + ], + [ + 103.411926270000038, + 13.379272461000028 + ], + [ + 103.412292480000076, + 13.383911133000026 + ], + [ + 103.411682129000042, + 13.388122559000067 + ], + [ + 103.410095215000069, + 13.390686035000044 + ], + [ + 103.409118652000075, + 13.393493652000075 + ], + [ + 103.406921387000068, + 13.397888184000067 + ], + [ + 103.403076172000056, + 13.401123047000056 + ], + [ + 103.402709961000085, + 13.405090332000043 + ], + [ + 103.400512695000032, + 13.40850830100004 + ], + [ + 103.397277832000043, + 13.411071777000075 + ], + [ + 103.394470215000069, + 13.413696289000029 + ], + [ + 103.393920898000033, + 13.418701172000056 + ], + [ + 103.394104004000042, + 13.423889160000044 + ], + [ + 103.395874023000033, + 13.427673340000069 + ], + [ + 103.397888184000067, + 13.431518555000025 + ], + [ + 103.40069580100004, + 13.435729980000076 + ], + [ + 103.401489258000083, + 13.440917969000054 + ], + [ + 103.402099609000061, + 13.445678711000028 + ], + [ + 103.402709961000085, + 13.449707031000059 + ], + [ + 103.403930664000086, + 13.453491211000028 + ], + [ + 103.406494141000053, + 13.456726074000073 + ], + [ + 103.409118652000075, + 13.458679199000073 + ], + [ + 103.412902832000043, + 13.461914062000062 + ], + [ + 103.413879395000038, + 13.46569824200003 + ], + [ + 103.411071777000075, + 13.467895508000026 + ], + [ + 103.406921387000068, + 13.470275879000042 + ], + [ + 103.403076172000056, + 13.471496582000043 + ], + [ + 103.400329590000069, + 13.475708008000026 + ], + [ + 103.402526855000076, + 13.479309082000043 + ], + [ + 103.402282715000069, + 13.483703613000046 + ], + [ + 103.401306152000075, + 13.486694336000028 + ], + [ + 103.403503418000071, + 13.489318848000039 + ], + [ + 103.402526855000076, + 13.493530273000033 + ], + [ + 103.403930664000086, + 13.497924805000025 + ], + [ + 103.407104492000087, + 13.494873047000056 + ], + [ + 103.407897949000073, + 13.499084473000039 + ], + [ + 103.412109375000057, + 13.500671387000068 + ], + [ + 103.409729004000042, + 13.503295898000033 + ], + [ + 103.410705566000047, + 13.50671386700003 + ], + [ + 103.409301758000083, + 13.509277344000054 + ], + [ + 103.406921387000068, + 13.510925293000071 + ], + [ + 103.405517578000058, + 13.513671875000057 + ], + [ + 103.407104492000087, + 13.517089844000054 + ], + [ + 103.410278320000032, + 13.518127441000047 + ], + [ + 103.412902832000043, + 13.520690918000071 + ], + [ + 103.413696289000086, + 13.524902344000054 + ], + [ + 103.413696289000086, + 13.528930664000029 + ], + [ + 103.417724609000061, + 13.530517578000058 + ], + [ + 103.415100098000039, + 13.533691406000059 + ], + [ + 103.416503906000059, + 13.536682129000042 + ], + [ + 103.415283203000058, + 13.540527344000054 + ], + [ + 103.417907715000069, + 13.543090820000032 + ], + [ + 103.416503906000059, + 13.545898437000062 + ], + [ + 103.414123535000044, + 13.548889160000044 + ], + [ + 103.410278320000032, + 13.551513672000056 + ], + [ + 103.411926270000038, + 13.556091309000067 + ], + [ + 103.414306641000053, + 13.559082031000059 + ], + [ + 103.413696289000086, + 13.561889648000033 + ], + [ + 103.409301758000083, + 13.561523437000062 + ], + [ + 103.406677246000072, + 13.563476562000062 + ], + [ + 103.40850830100004, + 13.566528320000032 + ], + [ + 103.405700684000067, + 13.567077637000068 + ], + [ + 103.403076172000056, + 13.569274902000075 + ], + [ + 103.405883789000086, + 13.570678711000028 + ], + [ + 103.409118652000075, + 13.570678711000028 + ], + [ + 103.413085937000062, + 13.571105957000043 + ], + [ + 103.415283203000058, + 13.574279785000044 + ], + [ + 103.41632080100004, + 13.579101562000062 + ], + [ + 103.411926270000038, + 13.57647705100004 + ], + [ + 103.408081055000082, + 13.578674316000047 + ], + [ + 103.408081055000082, + 13.582519531000059 + ], + [ + 103.412292480000076, + 13.583312988000046 + ], + [ + 103.410522461000085, + 13.585693359000061 + ], + [ + 103.407714844000054, + 13.587524414000029 + ], + [ + 103.404724121000072, + 13.588073730000076 + ], + [ + 103.404296875000057, + 13.591491699000073 + ], + [ + 103.40850830100004, + 13.593872070000032 + ], + [ + 103.412902832000043, + 13.594299316000047 + ], + [ + 103.414916992000087, + 13.597290039000029 + ], + [ + 103.414123535000044, + 13.601074219000054 + ], + [ + 103.410888672000056, + 13.603088379000042 + ], + [ + 103.407104492000087, + 13.604492187000062 + ], + [ + 103.40850830100004, + 13.608703613000046 + ], + [ + 103.407104492000087, + 13.611694336000028 + ], + [ + 103.401672363000046, + 13.612121582000043 + ], + [ + 103.399108887000068, + 13.607910156000059 + ], + [ + 103.395324707000043, + 13.609313965000069 + ], + [ + 103.398071289000086, + 13.612121582000043 + ], + [ + 103.397888184000067, + 13.615295410000044 + ], + [ + 103.394897461000085, + 13.618103027000075 + ], + [ + 103.391723633000083, + 13.619689941000047 + ], + [ + 103.390319824000073, + 13.622314453000058 + ], + [ + 103.393920898000033, + 13.623107910000044 + ], + [ + 103.396301270000038, + 13.625671387000068 + ], + [ + 103.395507812000062, + 13.630310059000067 + ], + [ + 103.397277832000043, + 13.63311767600004 + ], + [ + 103.400512695000032, + 13.633300781000059 + ], + [ + 103.405273437000062, + 13.63171386700003 + ], + [ + 103.407714844000054, + 13.633483887000068 + ], + [ + 103.405090332000043, + 13.635681152000075 + ], + [ + 103.404724121000072, + 13.639709473000039 + ], + [ + 103.402282715000069, + 13.641723633000026 + ], + [ + 103.398315430000082, + 13.642272949000073 + ], + [ + 103.396484375000057, + 13.646118164000029 + ], + [ + 103.399291992000087, + 13.64929199200003 + ], + [ + 103.401672363000046, + 13.651489258000026 + ], + [ + 103.400878906000059, + 13.655090332000043 + ], + [ + 103.403320312000062, + 13.657287598000039 + ], + [ + 103.406127930000082, + 13.659301758000026 + ], + [ + 103.406494141000053, + 13.663696289000029 + ], + [ + 103.409301758000083, + 13.665527344000054 + ], + [ + 103.413513184000067, + 13.668090820000032 + ], + [ + 103.413513184000067, + 13.672119141000053 + ], + [ + 103.417724609000061, + 13.67272949200003 + ], + [ + 103.421325684000067, + 13.67468261700003 + ], + [ + 103.423278809000067, + 13.677917480000076 + ], + [ + 103.428100586000085, + 13.679870605000076 + ], + [ + 103.432922363000046, + 13.681884766000053 + ], + [ + 103.435119629000042, + 13.684875488000046 + ], + [ + 103.437683105000076, + 13.686889648000033 + ], + [ + 103.439270020000038, + 13.69030761700003 + ], + [ + 103.437927246000072, + 13.693481445000032 + ], + [ + 103.434509277000075, + 13.694519043000071 + ], + [ + 103.432312012000068, + 13.696472168000071 + ], + [ + 103.430114746000072, + 13.700500488000046 + ], + [ + 103.428527832000043, + 13.705078125000057 + ], + [ + 103.424499512000068, + 13.706481934000067 + ], + [ + 103.421691895000038, + 13.708679199000073 + ], + [ + 103.421325684000067, + 13.712707520000038 + ], + [ + 103.423095703000058, + 13.715881348000039 + ], + [ + 103.422119141000053, + 13.718688965000069 + ], + [ + 103.420898437000062, + 13.722900391000053 + ], + [ + 103.424316406000059, + 13.722900391000053 + ], + [ + 103.427673340000069, + 13.72491455100004 + ], + [ + 103.424926758000083, + 13.727478027000075 + ], + [ + 103.421691895000038, + 13.729492187000062 + ], + [ + 103.422485352000081, + 13.733703613000046 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 6.0810830388100001, + "Shape_Area": 1.00492602409, + "ADM1_EN": "Stung Treng", + "ADM1_PCODE": "KH19", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 106.542907715000069, + 14.593322754000042 + ], + [ + 106.545715332000043, + 14.591125488000046 + ], + [ + 106.547302246000072, + 14.585083008000026 + ], + [ + 106.548278809000067, + 14.580871582000043 + ], + [ + 106.548706055000082, + 14.577697754000042 + ], + [ + 106.549499512000068, + 14.573913574000073 + ], + [ + 106.553283691000047, + 14.570678711000028 + ], + [ + 106.554687500000057, + 14.567871094000054 + ], + [ + 106.557678223000039, + 14.565490723000039 + ], + [ + 106.558471680000082, + 14.560913086000028 + ], + [ + 106.558471680000082, + 14.556518555000025 + ], + [ + 106.558471680000082, + 14.553527832000043 + ], + [ + 106.55889892600004, + 14.549926758000026 + ], + [ + 106.562316895000038, + 14.547485352000024 + ], + [ + 106.562683105000076, + 14.542297363000046 + ], + [ + 106.561523437000062, + 14.538879395000038 + ], + [ + 106.563293457000043, + 14.535095215000069 + ], + [ + 106.565673828000058, + 14.530700684000067 + ], + [ + 106.568908691000047, + 14.528076172000056 + ], + [ + 106.570922852000081, + 14.524108887000068 + ], + [ + 106.570129395000038, + 14.520080566000047 + ], + [ + 106.567687988000046, + 14.516113281000059 + ], + [ + 106.566284180000082, + 14.512512207000043 + ], + [ + 106.563110352000081, + 14.510925293000071 + ], + [ + 106.562683105000076, + 14.507507324000073 + ], + [ + 106.5625, + 14.504272461000028 + ], + [ + 106.565124512000068, + 14.500915527000075 + ], + [ + 106.568481445000089, + 14.500488281000059 + ], + [ + 106.571472168000071, + 14.50030517600004 + ], + [ + 106.574279785000044, + 14.501892090000069 + ], + [ + 106.576904297000056, + 14.503295898000033 + ], + [ + 106.579895020000038, + 14.505493164000029 + ], + [ + 106.583312988000046, + 14.507080078000058 + ], + [ + 106.586303711000085, + 14.505676270000038 + ], + [ + 106.589477539000086, + 14.508300781000059 + ], + [ + 106.594116211000085, + 14.507507324000073 + ], + [ + 106.596496582000043, + 14.505920410000044 + ], + [ + 106.600280762000068, + 14.50671386700003 + ], + [ + 106.600891113000046, + 14.502319336000028 + ], + [ + 106.602478027000075, + 14.499511719000054 + ], + [ + 106.603515625000057, + 14.495727539000029 + ], + [ + 106.608276367000087, + 14.495727539000029 + ], + [ + 106.612670898000033, + 14.497070312000062 + ], + [ + 106.613098145000038, + 14.493103027000075 + ], + [ + 106.613525391000053, + 14.489929199000073 + ], + [ + 106.615112305000082, + 14.487304687000062 + ], + [ + 106.615905762000068, + 14.482910156000059 + ], + [ + 106.613708496000072, + 14.479492187000062 + ], + [ + 106.613708496000072, + 14.475708008000026 + ], + [ + 106.615112305000082, + 14.470886230000076 + ], + [ + 106.615722656000059, + 14.467895508000026 + ], + [ + 106.617919922000056, + 14.464477539000029 + ], + [ + 106.620727539000086, + 14.461914062000062 + ], + [ + 106.621276855000076, + 14.458679199000073 + ], + [ + 106.625915527000075, + 14.458496094000054 + ], + [ + 106.628479004000042, + 14.456115723000039 + ], + [ + 106.628723145000038, + 14.452880859000061 + ], + [ + 106.629882812000062, + 14.449279785000044 + ], + [ + 106.630920410000044, + 14.445678711000028 + ], + [ + 106.633911133000083, + 14.445129395000038 + ], + [ + 106.636901855000076, + 14.446716309000067 + ], + [ + 106.640502930000082, + 14.448486328000058 + ], + [ + 106.645324707000043, + 14.447692871000072 + ], + [ + 106.650329590000069, + 14.44812011700003 + ], + [ + 106.654724121000072, + 14.448303223000039 + ], + [ + 106.658874512000068, + 14.449279785000044 + ], + [ + 106.662109375000057, + 14.447692871000072 + ], + [ + 106.660522461000085, + 14.443725586000028 + ], + [ + 106.663696289000086, + 14.439270020000038 + ], + [ + 106.66827392600004, + 14.438110352000024 + ], + [ + 106.671508789000086, + 14.437316895000038 + ], + [ + 106.675292969000054, + 14.436096191000047 + ], + [ + 106.678894043000071, + 14.432922363000046 + ], + [ + 106.682922363000046, + 14.433715820000032 + ], + [ + 106.686706543000071, + 14.431518555000025 + ], + [ + 106.690124512000068, + 14.429077148000033 + ], + [ + 106.694885254000042, + 14.428527832000043 + ], + [ + 106.699890137000068, + 14.429870605000076 + ], + [ + 106.704711914000086, + 14.428527832000043 + ], + [ + 106.706909180000082, + 14.424316406000059 + ], + [ + 106.710327148000033, + 14.423522949000073 + ], + [ + 106.713684082000043, + 14.422912598000039 + ], + [ + 106.716918945000089, + 14.422302246000072 + ], + [ + 106.719909668000071, + 14.423522949000073 + ], + [ + 106.720886230000076, + 14.427124023000033 + ], + [ + 106.722717285000044, + 14.430908203000058 + ], + [ + 106.725708008000083, + 14.434692383000026 + ], + [ + 106.730102539000086, + 14.434875488000046 + ], + [ + 106.733520508000083, + 14.433105469000054 + ], + [ + 106.736328125000057, + 14.431091309000067 + ], + [ + 106.739685059000067, + 14.429870605000076 + ], + [ + 106.742675781000059, + 14.428100586000028 + ], + [ + 106.743713379000042, + 14.425292969000054 + ], + [ + 106.743713379000042, + 14.421875 + ], + [ + 106.746276855000076, + 14.418701172000056 + ], + [ + 106.748901367000087, + 14.416076660000044 + ], + [ + 106.748718262000068, + 14.411926270000038 + ], + [ + 106.750122070000089, + 14.40850830100004 + ], + [ + 106.752685547000056, + 14.405883789000029 + ], + [ + 106.754882812000062, + 14.403076172000056 + ], + [ + 106.757080078000058, + 14.39929199200003 + ], + [ + 106.756713867000087, + 14.395690918000071 + ], + [ + 106.754882812000062, + 14.393493652000075 + ], + [ + 106.754089355000076, + 14.390502930000025 + ], + [ + 106.755126953000058, + 14.386901855000076 + ], + [ + 106.755310059000067, + 14.383911133000026 + ], + [ + 106.752929687000062, + 14.377929687000062 + ], + [ + 106.749694824000073, + 14.370300293000071 + ], + [ + 106.749511719000054, + 14.365112305000025 + ], + [ + 106.747680664000086, + 14.362304687000062 + ], + [ + 106.747070312000062, + 14.346923828000058 + ], + [ + 106.746887207000043, + 14.333496094000054 + ], + [ + 106.747070312000062, + 14.322082520000038 + ], + [ + 106.747680664000086, + 14.314514160000044 + ], + [ + 106.748107910000044, + 14.311279297000056 + ], + [ + 106.748107910000044, + 14.307922363000046 + ], + [ + 106.747924805000082, + 14.304687500000057 + ], + [ + 106.748474121000072, + 14.296875 + ], + [ + 106.748901367000087, + 14.29187011700003 + ], + [ + 106.749328613000046, + 14.288085937000062 + ], + [ + 106.750122070000089, + 14.281677246000072 + ], + [ + 106.750122070000089, + 14.277709961000028 + ], + [ + 106.750488281000059, + 14.273925781000059 + ], + [ + 106.751098633000083, + 14.270080566000047 + ], + [ + 106.751708984000061, + 14.266296387000068 + ], + [ + 106.752319336000085, + 14.262512207000043 + ], + [ + 106.752685547000056, + 14.258728027000075 + ], + [ + 106.753295898000033, + 14.254882812000062 + ], + [ + 106.753906250000057, + 14.250915527000075 + ], + [ + 106.753906250000057, + 14.247314453000058 + ], + [ + 106.754699707000043, + 14.243530273000033 + ], + [ + 106.756530762000068, + 14.240295410000044 + ], + [ + 106.759521484000061, + 14.235900879000042 + ], + [ + 106.759277344000054, + 14.230895996000072 + ], + [ + 106.758300781000059, + 14.226684570000032 + ], + [ + 106.757507324000073, + 14.222717285000044 + ], + [ + 106.756286621000072, + 14.217285156000059 + ], + [ + 106.754272461000085, + 14.213317871000072 + ], + [ + 106.753112793000071, + 14.210327148000033 + ], + [ + 106.753295898000033, + 14.206298828000058 + ], + [ + 106.753112793000071, + 14.202880859000061 + ], + [ + 106.752685547000056, + 14.19952392600004 + ], + [ + 106.752319336000085, + 14.195922852000024 + ], + [ + 106.752319336000085, + 14.192321777000075 + ], + [ + 106.752319336000085, + 14.189086914000029 + ], + [ + 106.752075195000089, + 14.18389892600004 + ], + [ + 106.751892090000069, + 14.180908203000058 + ], + [ + 106.751525879000042, + 14.177673340000069 + ], + [ + 106.751525879000042, + 14.173706055000025 + ], + [ + 106.752075195000089, + 14.170104980000076 + ], + [ + 106.753295898000033, + 14.167480469000054 + ], + [ + 106.755310059000067, + 14.16491699200003 + ], + [ + 106.75811767600004, + 14.162475586000028 + ], + [ + 106.759704590000069, + 14.159729004000042 + ], + [ + 106.761474609000061, + 14.154724121000072 + ], + [ + 106.764892578000058, + 14.146484375000057 + ], + [ + 106.769287109000061, + 14.136108398000033 + ], + [ + 106.773681641000053, + 14.125488281000059 + ], + [ + 106.779907227000081, + 14.10968017600004 + ], + [ + 106.781127930000082, + 14.106506348000039 + ], + [ + 106.783691406000059, + 14.099670410000044 + ], + [ + 106.786315918000071, + 14.091491699000073 + ], + [ + 106.787902832000043, + 14.086730957000043 + ], + [ + 106.789123535000044, + 14.08288574200003 + ], + [ + 106.789306641000053, + 14.077697754000042 + ], + [ + 106.788513184000067, + 14.072692871000072 + ], + [ + 106.786682129000042, + 14.068481445000032 + ], + [ + 106.784484863000046, + 14.064880371000072 + ], + [ + 106.781127930000082, + 14.060119629000042 + ], + [ + 106.778320312000062, + 14.056518555000025 + ], + [ + 106.77569580100004, + 14.052124023000033 + ], + [ + 106.771728516000053, + 14.046508789000029 + ], + [ + 106.767700195000089, + 14.041076660000044 + ], + [ + 106.765502930000082, + 14.038330078000058 + ], + [ + 106.762084961000085, + 14.033691406000059 + ], + [ + 106.758300781000059, + 14.028076172000056 + ], + [ + 106.755676270000038, + 14.02569580100004 + ], + [ + 106.752502441000047, + 14.023071289000029 + ], + [ + 106.749328613000046, + 14.021118164000029 + ], + [ + 106.744873047000056, + 14.019897461000028 + ], + [ + 106.741699219000054, + 14.020324707000043 + ], + [ + 106.738281250000057, + 14.019287109000061 + ], + [ + 106.734924316000047, + 14.019287109000061 + ], + [ + 106.731506348000039, + 14.019287109000061 + ], + [ + 106.728088379000042, + 14.016906738000046 + ], + [ + 106.726074219000054, + 14.01452636700003 + ], + [ + 106.723327637000068, + 14.013671875000057 + ], + [ + 106.719482422000056, + 14.012512207000043 + ], + [ + 106.715515137000068, + 14.010681152000075 + ], + [ + 106.712707520000038, + 14.00811767600004 + ], + [ + 106.710510254000042, + 14.006286621000072 + ], + [ + 106.707702637000068, + 14.005126953000058 + ], + [ + 106.705688477000081, + 14.001708984000061 + ], + [ + 106.703308105000076, + 13.997924805000025 + ], + [ + 106.699279785000044, + 13.996276855000076 + ], + [ + 106.695678711000085, + 13.995117187000062 + ], + [ + 106.692321777000075, + 13.997070312000062 + ], + [ + 106.688476562000062, + 13.998474121000072 + ], + [ + 106.685119629000042, + 13.998291016000053 + ], + [ + 106.682128906000059, + 13.997070312000062 + ], + [ + 106.676879883000083, + 13.995727539000029 + ], + [ + 106.673095703000058, + 13.995300293000071 + ], + [ + 106.668884277000075, + 13.996704102000024 + ], + [ + 106.66632080100004, + 13.994689941000047 + ], + [ + 106.662475586000085, + 13.99108886700003 + ], + [ + 106.658874512000068, + 13.988708496000072 + ], + [ + 106.655090332000043, + 13.986694336000028 + ], + [ + 106.651123047000056, + 13.986877441000047 + ], + [ + 106.648071289000086, + 13.987670898000033 + ], + [ + 106.644470215000069, + 13.989501953000058 + ], + [ + 106.641296387000068, + 13.990112305000025 + ], + [ + 106.637695312000062, + 13.99108886700003 + ], + [ + 106.633728027000075, + 13.992309570000032 + ], + [ + 106.630126953000058, + 13.994079590000069 + ], + [ + 106.625671387000068, + 13.993713379000042 + ], + [ + 106.621276855000076, + 13.993286133000026 + ], + [ + 106.616516113000046, + 13.992309570000032 + ], + [ + 106.617675781000059, + 13.987915039000029 + ], + [ + 106.616699219000054, + 13.98468017600004 + ], + [ + 106.615905762000068, + 13.981872559000067 + ], + [ + 106.614074707000043, + 13.979309082000043 + ], + [ + 106.612487793000071, + 13.976074219000054 + ], + [ + 106.612915039000086, + 13.972900391000053 + ], + [ + 106.614318848000039, + 13.968078613000046 + ], + [ + 106.615722656000059, + 13.965270996000072 + ], + [ + 106.616271973000039, + 13.962524414000029 + ], + [ + 106.616882324000073, + 13.958679199000073 + ], + [ + 106.617919922000056, + 13.953918457000043 + ], + [ + 106.618286133000083, + 13.950683594000054 + ], + [ + 106.618896484000061, + 13.947875977000024 + ], + [ + 106.618286133000083, + 13.944702148000033 + ], + [ + 106.619506836000085, + 13.94171142600004 + ], + [ + 106.622497559000067, + 13.938293457000043 + ], + [ + 106.626098633000083, + 13.934692383000026 + ], + [ + 106.62530517600004, + 13.930725098000039 + ], + [ + 106.626098633000083, + 13.926696777000075 + ], + [ + 106.627075195000089, + 13.922912598000039 + ], + [ + 106.626525879000042, + 13.920104980000076 + ], + [ + 106.625488281000059, + 13.916503906000059 + ], + [ + 106.624328613000046, + 13.911315918000071 + ], + [ + 106.625122070000089, + 13.906494141000053 + ], + [ + 106.626525879000042, + 13.901672363000046 + ], + [ + 106.628295898000033, + 13.898925781000059 + ], + [ + 106.630920410000044, + 13.896728516000053 + ], + [ + 106.633300781000059, + 13.894714355000076 + ], + [ + 106.635681152000075, + 13.891906738000046 + ], + [ + 106.637329102000081, + 13.888671875000057 + ], + [ + 106.636718750000057, + 13.884887695000032 + ], + [ + 106.634887695000089, + 13.880676270000038 + ], + [ + 106.632873535000044, + 13.876098633000026 + ], + [ + 106.631530762000068, + 13.871276855000076 + ], + [ + 106.632507324000073, + 13.867126465000069 + ], + [ + 106.634094238000046, + 13.862670898000033 + ], + [ + 106.637329102000081, + 13.860900879000042 + ], + [ + 106.64093017600004, + 13.860107422000056 + ], + [ + 106.641906738000046, + 13.857116699000073 + ], + [ + 106.644897461000085, + 13.85632324200003 + ], + [ + 106.648071289000086, + 13.854675293000071 + ], + [ + 106.650329590000069, + 13.851318359000061 + ], + [ + 106.648925781000059, + 13.848327637000068 + ], + [ + 106.649719238000046, + 13.845092773000033 + ], + [ + 106.650512695000089, + 13.842285156000059 + ], + [ + 106.652099609000061, + 13.838500977000024 + ], + [ + 106.655090332000043, + 13.837280273000033 + ], + [ + 106.658081055000082, + 13.838073730000076 + ], + [ + 106.660705566000047, + 13.83428955100004 + ], + [ + 106.663879395000038, + 13.829895020000038 + ], + [ + 106.660888672000056, + 13.82507324200003 + ], + [ + 106.658081055000082, + 13.82312011700003 + ], + [ + 106.656677246000072, + 13.820495605000076 + ], + [ + 106.655517578000058, + 13.817687988000046 + ], + [ + 106.653930664000086, + 13.814086914000029 + ], + [ + 106.653503418000071, + 13.810302734000061 + ], + [ + 106.653503418000071, + 13.806274414000029 + ], + [ + 106.654296875000057, + 13.803283691000047 + ], + [ + 106.655273437000062, + 13.800292969000054 + ], + [ + 106.656921387000068, + 13.797302246000072 + ], + [ + 106.658691406000059, + 13.794128418000071 + ], + [ + 106.659912109000061, + 13.791076660000044 + ], + [ + 106.660888672000056, + 13.788085937000062 + ], + [ + 106.661315918000071, + 13.785095215000069 + ], + [ + 106.663330078000058, + 13.782897949000073 + ], + [ + 106.663330078000058, + 13.779296875000057 + ], + [ + 106.661926270000038, + 13.773925781000059 + ], + [ + 106.659301758000083, + 13.768493652000075 + ], + [ + 106.657287598000039, + 13.764709473000039 + ], + [ + 106.653320312000062, + 13.759704590000069 + ], + [ + 106.646911621000072, + 13.752929687000062 + ], + [ + 106.645690918000071, + 13.749084473000039 + ], + [ + 106.643310547000056, + 13.746520996000072 + ], + [ + 106.639282227000081, + 13.744689941000047 + ], + [ + 106.636474609000061, + 13.741699219000054 + ], + [ + 106.63507080100004, + 13.739074707000043 + ], + [ + 106.633728027000075, + 13.735900879000042 + ], + [ + 106.634521484000061, + 13.732116699000073 + ], + [ + 106.632873535000044, + 13.726928711000028 + ], + [ + 106.631896973000039, + 13.721496582000043 + ], + [ + 106.629272461000085, + 13.717895508000026 + ], + [ + 106.626708984000061, + 13.715270996000072 + ], + [ + 106.624328613000046, + 13.713073730000076 + ], + [ + 106.621276855000076, + 13.709899902000075 + ], + [ + 106.619873047000056, + 13.706115723000039 + ], + [ + 106.617675781000059, + 13.703125 + ], + [ + 106.614501953000058, + 13.700927734000061 + ], + [ + 106.610717773000033, + 13.698913574000073 + ], + [ + 106.606506348000039, + 13.696899414000029 + ], + [ + 106.603515625000057, + 13.692871094000054 + ], + [ + 106.598876953000058, + 13.690490723000039 + ], + [ + 106.594299316000047, + 13.688293457000043 + ], + [ + 106.589294434000067, + 13.686889648000033 + ], + [ + 106.586303711000085, + 13.683105469000054 + ], + [ + 106.582275391000053, + 13.682678223000039 + ], + [ + 106.578674316000047, + 13.682922363000046 + ], + [ + 106.574096680000082, + 13.682922363000046 + ], + [ + 106.569885254000042, + 13.682128906000059 + ], + [ + 106.56671142600004, + 13.680480957000043 + ], + [ + 106.562316895000038, + 13.678100586000028 + ], + [ + 106.55889892600004, + 13.675720215000069 + ], + [ + 106.554687500000057, + 13.673522949000073 + ], + [ + 106.550109863000046, + 13.672912598000039 + ], + [ + 106.546081543000071, + 13.671875 + ], + [ + 106.540283203000058, + 13.670898437000062 + ], + [ + 106.535278320000089, + 13.670715332000043 + ], + [ + 106.530883789000086, + 13.670288086000028 + ], + [ + 106.530700684000067, + 13.621093750000057 + ], + [ + 106.529907227000081, + 13.599670410000044 + ], + [ + 106.530273437000062, + 13.575927734000061 + ], + [ + 106.531677246000072, + 13.553100586000028 + ], + [ + 106.538085937000062, + 13.552673340000069 + ], + [ + 106.541503906000059, + 13.551879883000026 + ], + [ + 106.545715332000043, + 13.54968261700003 + ], + [ + 106.548889160000044, + 13.547485352000024 + ], + [ + 106.552490234000061, + 13.544921875000057 + ], + [ + 106.555114746000072, + 13.54132080100004 + ], + [ + 106.556518555000082, + 13.537902832000043 + ], + [ + 106.558105469000054, + 13.53350830100004 + ], + [ + 106.560302734000061, + 13.529907227000024 + ], + [ + 106.562316895000038, + 13.527099609000061 + ], + [ + 106.564697266000053, + 13.524719238000046 + ], + [ + 106.567504883000083, + 13.522094727000024 + ], + [ + 106.570312500000057, + 13.518676758000026 + ], + [ + 106.572082520000038, + 13.514892578000058 + ], + [ + 106.57452392600004, + 13.512084961000028 + ], + [ + 106.574096680000082, + 13.506896973000039 + ], + [ + 106.573486328000058, + 13.503112793000071 + ], + [ + 106.573913574000073, + 13.49890136700003 + ], + [ + 106.574890137000068, + 13.494323730000076 + ], + [ + 106.577087402000075, + 13.490295410000044 + ], + [ + 106.578674316000047, + 13.486877441000047 + ], + [ + 106.580688477000081, + 13.483520508000026 + ], + [ + 106.582519531000059, + 13.478698730000076 + ], + [ + 106.584106445000089, + 13.474487305000025 + ], + [ + 106.585693359000061, + 13.471313477000024 + ], + [ + 106.589111328000058, + 13.467529297000056 + ], + [ + 106.591491699000073, + 13.463684082000043 + ], + [ + 106.593078613000046, + 13.460327148000033 + ], + [ + 106.594482422000056, + 13.457519531000059 + ], + [ + 106.596496582000043, + 13.453918457000043 + ], + [ + 106.598327637000068, + 13.449279785000044 + ], + [ + 106.598083496000072, + 13.445495605000076 + ], + [ + 106.600280762000068, + 13.441528320000032 + ], + [ + 106.600708008000083, + 13.438476562000062 + ], + [ + 106.603271484000061, + 13.437316895000038 + ], + [ + 106.605529785000044, + 13.434692383000026 + ], + [ + 106.608093262000068, + 13.432678223000039 + ], + [ + 106.610717773000033, + 13.430480957000043 + ], + [ + 106.612487793000071, + 13.427307129000042 + ], + [ + 106.612121582000043, + 13.423095703000058 + ], + [ + 106.613708496000072, + 13.418090820000032 + ], + [ + 106.611083984000061, + 13.414489746000072 + ], + [ + 106.609313965000069, + 13.410888672000056 + ], + [ + 106.607482910000044, + 13.408081055000025 + ], + [ + 106.604919434000067, + 13.405883789000029 + ], + [ + 106.605285645000038, + 13.401489258000026 + ], + [ + 106.607299805000082, + 13.397277832000043 + ], + [ + 106.610473633000083, + 13.396728516000053 + ], + [ + 106.611694336000085, + 13.392700195000032 + ], + [ + 106.614318848000039, + 13.390319824000073 + ], + [ + 106.618103027000075, + 13.389099121000072 + ], + [ + 106.622070312000062, + 13.387878418000071 + ], + [ + 106.621276855000076, + 13.38507080100004 + ], + [ + 106.621093750000057, + 13.380310059000067 + ], + [ + 106.620910645000038, + 13.376098633000026 + ], + [ + 106.623291016000053, + 13.373474121000072 + ], + [ + 106.626892090000069, + 13.371093750000057 + ], + [ + 106.625122070000089, + 13.366271973000039 + ], + [ + 106.625671387000068, + 13.362915039000029 + ], + [ + 106.627319336000085, + 13.359130859000061 + ], + [ + 106.626281738000046, + 13.354309082000043 + ], + [ + 106.625122070000089, + 13.34991455100004 + ], + [ + 106.624877930000082, + 13.346496582000043 + ], + [ + 106.622070312000062, + 13.344726562000062 + ], + [ + 106.618530273000033, + 13.343505859000061 + ], + [ + 106.615722656000059, + 13.342529297000056 + ], + [ + 106.612487793000071, + 13.341918945000032 + ], + [ + 106.608886719000054, + 13.341125488000046 + ], + [ + 106.609130859000061, + 13.337524414000029 + ], + [ + 106.609313965000069, + 13.333312988000046 + ], + [ + 106.609497070000089, + 13.329284668000071 + ], + [ + 106.610473633000083, + 13.326110840000069 + ], + [ + 106.608093262000068, + 13.322875977000024 + ], + [ + 106.604492187000062, + 13.319702148000033 + ], + [ + 106.600891113000046, + 13.319091797000056 + ], + [ + 106.598510742000087, + 13.320922852000024 + ], + [ + 106.595886230000076, + 13.32312011700003 + ], + [ + 106.592895508000083, + 13.325500488000046 + ], + [ + 106.589477539000086, + 13.327880859000061 + ], + [ + 106.585510254000042, + 13.329895020000038 + ], + [ + 106.581909180000082, + 13.332092285000044 + ], + [ + 106.577514648000033, + 13.333129883000026 + ], + [ + 106.573303223000039, + 13.334716797000056 + ], + [ + 106.570678711000085, + 13.337890625000057 + ], + [ + 106.568481445000089, + 13.339904785000044 + ], + [ + 106.566528320000089, + 13.34210205100004 + ], + [ + 106.563720703000058, + 13.344726562000062 + ], + [ + 106.560913086000085, + 13.347473145000038 + ], + [ + 106.558105469000054, + 13.350524902000075 + ], + [ + 106.553283691000047, + 13.351074219000054 + ], + [ + 106.549682617000087, + 13.350708008000026 + ], + [ + 106.545104980000076, + 13.350708008000026 + ], + [ + 106.541687012000068, + 13.349670410000044 + ], + [ + 106.538696289000086, + 13.348876953000058 + ], + [ + 106.533874512000068, + 13.348083496000072 + ], + [ + 106.530517578000058, + 13.348876953000058 + ], + [ + 106.527282715000069, + 13.349304199000073 + ], + [ + 106.524291992000087, + 13.349304199000073 + ], + [ + 106.520080566000047, + 13.351501465000069 + ], + [ + 106.516479492000087, + 13.353881836000028 + ], + [ + 106.512084961000085, + 13.355285645000038 + ], + [ + 106.509887695000089, + 13.359130859000061 + ], + [ + 106.507080078000058, + 13.362487793000071 + ], + [ + 106.504089355000076, + 13.36608886700003 + ], + [ + 106.501892090000069, + 13.368530273000033 + ], + [ + 106.499694824000073, + 13.371276855000076 + ], + [ + 106.496520996000072, + 13.374877930000025 + ], + [ + 106.493530273000033, + 13.377685547000056 + ], + [ + 106.490478516000053, + 13.380310059000067 + ], + [ + 106.486877441000047, + 13.382690430000025 + ], + [ + 106.484130859000061, + 13.384277344000054 + ], + [ + 106.480529785000044, + 13.386108398000033 + ], + [ + 106.475708008000083, + 13.388122559000067 + ], + [ + 106.471313477000081, + 13.389282227000024 + ], + [ + 106.466308594000054, + 13.39093017600004 + ], + [ + 106.462280273000033, + 13.392700195000032 + ], + [ + 106.457885742000087, + 13.395080566000047 + ], + [ + 106.453125, + 13.397705078000058 + ], + [ + 106.44952392600004, + 13.399719238000046 + ], + [ + 106.446716309000067, + 13.401489258000026 + ], + [ + 106.435913086000085, + 13.408081055000025 + ], + [ + 106.425109863000046, + 13.414672852000024 + ], + [ + 106.419921875000057, + 13.417114258000026 + ], + [ + 106.404296875000057, + 13.414672852000024 + ], + [ + 106.393676758000083, + 13.410095215000069 + ], + [ + 106.390075684000067, + 13.408691406000059 + ], + [ + 106.387084961000085, + 13.407470703000058 + ], + [ + 106.384277344000054, + 13.406677246000072 + ], + [ + 106.380493164000086, + 13.405517578000058 + ], + [ + 106.377319336000085, + 13.404479980000076 + ], + [ + 106.374511719000054, + 13.403930664000029 + ], + [ + 106.371093750000057, + 13.403320312000062 + ], + [ + 106.366088867000087, + 13.402526855000076 + ], + [ + 106.358703613000046, + 13.401306152000075 + ], + [ + 106.350097656000059, + 13.400085449000073 + ], + [ + 106.337097168000071, + 13.399475098000039 + ], + [ + 106.333129883000083, + 13.39929199200003 + ], + [ + 106.328674316000047, + 13.399902344000054 + ], + [ + 106.324890137000068, + 13.400329590000069 + ], + [ + 106.321289062000062, + 13.40069580100004 + ], + [ + 106.316101074000073, + 13.402099609000061 + ], + [ + 106.3125, + 13.403686523000033 + ], + [ + 106.309082031000059, + 13.405273437000062 + ], + [ + 106.306274414000086, + 13.40710449200003 + ], + [ + 106.302490234000061, + 13.406494141000053 + ], + [ + 106.299316406000059, + 13.404113770000038 + ], + [ + 106.297302246000072, + 13.400085449000073 + ], + [ + 106.292297363000046, + 13.401489258000026 + ], + [ + 106.289306641000053, + 13.403076172000056 + ], + [ + 106.285095215000069, + 13.402526855000076 + ], + [ + 106.281921387000068, + 13.401916504000042 + ], + [ + 106.278320312000062, + 13.403076172000056 + ], + [ + 106.273925781000059, + 13.403686523000033 + ], + [ + 106.269714355000076, + 13.403930664000029 + ], + [ + 106.266479492000087, + 13.405517578000058 + ], + [ + 106.26007080100004, + 13.398071289000029 + ], + [ + 106.253723145000038, + 13.392089844000054 + ], + [ + 106.245483398000033, + 13.393493652000075 + ], + [ + 106.243530273000033, + 13.39093017600004 + ], + [ + 106.241088867000087, + 13.387878418000071 + ], + [ + 106.239501953000058, + 13.383300781000059 + ], + [ + 106.239074707000043, + 13.379272461000028 + ], + [ + 106.239318848000039, + 13.374328613000046 + ], + [ + 106.238891602000081, + 13.369689941000047 + ], + [ + 106.236511230000076, + 13.367919922000056 + ], + [ + 106.225524902000075, + 13.362670898000033 + ], + [ + 106.221313477000081, + 13.360900879000042 + ], + [ + 106.217712402000075, + 13.360473633000026 + ], + [ + 106.213317871000072, + 13.361511230000076 + ], + [ + 106.207885742000087, + 13.362487793000071 + ], + [ + 106.202880859000061, + 13.360473633000026 + ], + [ + 106.199890137000068, + 13.361877441000047 + ], + [ + 106.197082520000038, + 13.363098145000038 + ], + [ + 106.194519043000071, + 13.365112305000025 + ], + [ + 106.19171142600004, + 13.366271973000039 + ], + [ + 106.187927246000072, + 13.36749267600004 + ], + [ + 106.184082031000059, + 13.367309570000032 + ], + [ + 106.180480957000043, + 13.366516113000046 + ], + [ + 106.176879883000083, + 13.367126465000069 + ], + [ + 106.172485352000081, + 13.368103027000075 + ], + [ + 106.168090820000089, + 13.368713379000042 + ], + [ + 106.164489746000072, + 13.369506836000028 + ], + [ + 106.161071777000075, + 13.367919922000056 + ], + [ + 106.157470703000058, + 13.368286133000026 + ], + [ + 106.154296875000057, + 13.365905762000068 + ], + [ + 106.151489258000083, + 13.365112305000025 + ], + [ + 106.147521973000039, + 13.365112305000025 + ], + [ + 106.144104004000042, + 13.36608886700003 + ], + [ + 106.140319824000073, + 13.367126465000069 + ], + [ + 106.135925293000071, + 13.368713379000042 + ], + [ + 106.132873535000044, + 13.369323730000076 + ], + [ + 106.130920410000044, + 13.365905762000068 + ], + [ + 106.126892090000069, + 13.365905762000068 + ], + [ + 106.121704102000081, + 13.367309570000032 + ], + [ + 106.116699219000054, + 13.367309570000032 + ], + [ + 106.113281250000057, + 13.36608886700003 + ], + [ + 106.109313965000069, + 13.365722656000059 + ], + [ + 106.107116699000073, + 13.363891602000024 + ], + [ + 106.104125977000081, + 13.363525391000053 + ], + [ + 106.100097656000059, + 13.359924316000047 + ], + [ + 106.096313477000081, + 13.358886719000054 + ], + [ + 106.093872070000089, + 13.357116699000073 + ], + [ + 106.091125488000046, + 13.355895996000072 + ], + [ + 106.085876465000069, + 13.353698730000076 + ], + [ + 106.082519531000059, + 13.351318359000061 + ], + [ + 106.082885742000087, + 13.348327637000068 + ], + [ + 106.084716797000056, + 13.345275879000042 + ], + [ + 106.085876465000069, + 13.342285156000059 + ], + [ + 106.086303711000085, + 13.339111328000058 + ], + [ + 106.085083008000083, + 13.335693359000061 + ], + [ + 106.081298828000058, + 13.333923340000069 + ], + [ + 106.077697754000042, + 13.331298828000058 + ], + [ + 106.076293945000089, + 13.327697754000042 + ], + [ + 106.073486328000058, + 13.323913574000073 + ], + [ + 106.071716309000067, + 13.318725586000028 + ], + [ + 106.070129395000038, + 13.314514160000044 + ], + [ + 106.066528320000089, + 13.311889648000033 + ], + [ + 106.061889648000033, + 13.310302734000061 + ], + [ + 106.059326172000056, + 13.306518555000025 + ], + [ + 106.059082031000059, + 13.302124023000033 + ], + [ + 106.058288574000073, + 13.297912598000039 + ], + [ + 106.055908203000058, + 13.296081543000071 + ], + [ + 106.052673340000069, + 13.296081543000071 + ], + [ + 106.048889160000044, + 13.294311523000033 + ], + [ + 106.047119141000053, + 13.28991699200003 + ], + [ + 106.047302246000072, + 13.285888672000056 + ], + [ + 106.044128418000071, + 13.28210449200003 + ], + [ + 106.039306641000053, + 13.279479980000076 + ], + [ + 106.036315918000071, + 13.27569580100004 + ], + [ + 106.033691406000059, + 13.272705078000058 + ], + [ + 106.032714844000054, + 13.269287109000061 + ], + [ + 106.030517578000058, + 13.265686035000044 + ], + [ + 106.028076172000056, + 13.262695312000062 + ], + [ + 106.025512695000089, + 13.259094238000046 + ], + [ + 106.02569580100004, + 13.255126953000058 + ], + [ + 106.023925781000059, + 13.250915527000075 + ], + [ + 106.025512695000089, + 13.247314453000058 + ], + [ + 106.026123047000056, + 13.243286133000026 + ], + [ + 106.025512695000089, + 13.238891602000024 + ], + [ + 106.02569580100004, + 13.233703613000046 + ], + [ + 106.024475098000039, + 13.230285645000038 + ], + [ + 106.022521973000039, + 13.225891113000046 + ], + [ + 106.018310547000056, + 13.223083496000072 + ], + [ + 106.015075684000067, + 13.221923828000058 + ], + [ + 106.012695312000062, + 13.219909668000071 + ], + [ + 106.009704590000069, + 13.217712402000075 + ], + [ + 106.005676270000038, + 13.215087891000053 + ], + [ + 106.000671387000068, + 13.215881348000039 + ], + [ + 105.997314453000058, + 13.218322754000042 + ], + [ + 105.994079590000069, + 13.220703125000057 + ], + [ + 105.989318848000039, + 13.223876953000058 + ], + [ + 105.986328125000057, + 13.225524902000075 + ], + [ + 105.982910156000059, + 13.227294922000056 + ], + [ + 105.978515625000057, + 13.228698730000076 + ], + [ + 105.973083496000072, + 13.230102539000029 + ], + [ + 105.967529297000056, + 13.231689453000058 + ], + [ + 105.965515137000068, + 13.226318359000061 + ], + [ + 105.965087891000053, + 13.223083496000072 + ], + [ + 105.964477539000086, + 13.218505859000061 + ], + [ + 105.964477539000086, + 13.213500977000024 + ], + [ + 105.964477539000086, + 13.208496094000054 + ], + [ + 105.965270996000072, + 13.203918457000043 + ], + [ + 105.965515137000068, + 13.200500488000046 + ], + [ + 105.965270996000072, + 13.196289062000062 + ], + [ + 105.963500977000081, + 13.193115234000061 + ], + [ + 105.961486816000047, + 13.19030761700003 + ], + [ + 105.960693359000061, + 13.185485840000069 + ], + [ + 105.957519531000059, + 13.179504395000038 + ], + [ + 105.954101562000062, + 13.175292969000054 + ], + [ + 105.951721191000047, + 13.170898437000062 + ], + [ + 105.948303223000039, + 13.168518066000047 + ], + [ + 105.946899414000086, + 13.165100098000039 + ], + [ + 105.946105957000043, + 13.161499023000033 + ], + [ + 105.943908691000047, + 13.159484863000046 + ], + [ + 105.944274902000075, + 13.156494141000053 + ], + [ + 105.945312500000057, + 13.152099609000061 + ], + [ + 105.942077637000068, + 13.149902344000054 + ], + [ + 105.938110352000081, + 13.149108887000068 + ], + [ + 105.935485840000069, + 13.147277832000043 + ], + [ + 105.932128906000059, + 13.145874023000033 + ], + [ + 105.929504395000038, + 13.143676758000026 + ], + [ + 105.927673340000069, + 13.141113281000059 + ], + [ + 105.923706055000082, + 13.140319824000073 + ], + [ + 105.919921875000057, + 13.139709473000039 + ], + [ + 105.91632080100004, + 13.138122559000067 + ], + [ + 105.912902832000043, + 13.136108398000033 + ], + [ + 105.909118652000075, + 13.137329102000024 + ], + [ + 105.905273437000062, + 13.136901855000076 + ], + [ + 105.901306152000075, + 13.133300781000059 + ], + [ + 105.897705078000058, + 13.131286621000072 + ], + [ + 105.896301270000038, + 13.128479004000042 + ], + [ + 105.893127441000047, + 13.127319336000028 + ], + [ + 105.889892578000058, + 13.124877930000025 + ], + [ + 105.887329102000081, + 13.123291016000053 + ], + [ + 105.884704590000069, + 13.120910645000038 + ], + [ + 105.880676270000038, + 13.120727539000029 + ], + [ + 105.878112793000071, + 13.118896484000061 + ], + [ + 105.875671387000068, + 13.116882324000073 + ], + [ + 105.872070312000062, + 13.11608886700003 + ], + [ + 105.867919922000056, + 13.117675781000059 + ], + [ + 105.866271973000039, + 13.115112305000025 + ], + [ + 105.863525391000053, + 13.114074707000043 + ], + [ + 105.857299805000082, + 13.114074707000043 + ], + [ + 105.852905273000033, + 13.114929199000073 + ], + [ + 105.84991455100004, + 13.116516113000046 + ], + [ + 105.846923828000058, + 13.11749267600004 + ], + [ + 105.843322754000042, + 13.119079590000069 + ], + [ + 105.840698242000087, + 13.120300293000071 + ], + [ + 105.838073730000076, + 13.121887207000043 + ], + [ + 105.835327148000033, + 13.123291016000053 + ], + [ + 105.831909180000082, + 13.123718262000068 + ], + [ + 105.827270508000083, + 13.125671387000068 + ], + [ + 105.821472168000071, + 13.126708984000061 + ], + [ + 105.817871094000054, + 13.128112793000071 + ], + [ + 105.814697266000053, + 13.128112793000071 + ], + [ + 105.810913086000085, + 13.127929687000062 + ], + [ + 105.807128906000059, + 13.129699707000043 + ], + [ + 105.804321289000086, + 13.131286621000072 + ], + [ + 105.80108642600004, + 13.132324219000054 + ], + [ + 105.797912598000039, + 13.134277344000054 + ], + [ + 105.795288086000085, + 13.136291504000042 + ], + [ + 105.793518066000047, + 13.139282227000024 + ], + [ + 105.791870117000087, + 13.142700195000032 + ], + [ + 105.789123535000044, + 13.145507812000062 + ], + [ + 105.784484863000046, + 13.147521973000039 + ], + [ + 105.771118164000086, + 13.157287598000039 + ], + [ + 105.764709473000039, + 13.161926270000038 + ], + [ + 105.76007080100004, + 13.165100098000039 + ], + [ + 105.757507324000073, + 13.166503906000059 + ], + [ + 105.754089355000076, + 13.169311523000033 + ], + [ + 105.752075195000089, + 13.17272949200003 + ], + [ + 105.751708984000061, + 13.17608642600004 + ], + [ + 105.748901367000087, + 13.178527832000043 + ], + [ + 105.746276855000076, + 13.180297852000024 + ], + [ + 105.74249267600004, + 13.183288574000073 + ], + [ + 105.735107422000056, + 13.185119629000042 + ], + [ + 105.731323242000087, + 13.187072754000042 + ], + [ + 105.727722168000071, + 13.189086914000029 + ], + [ + 105.72491455100004, + 13.190673828000058 + ], + [ + 105.721679687000062, + 13.192504883000026 + ], + [ + 105.719116211000085, + 13.194091797000056 + ], + [ + 105.716125488000046, + 13.195678711000028 + ], + [ + 105.713073730000076, + 13.197326660000044 + ], + [ + 105.710327148000033, + 13.198913574000073 + ], + [ + 105.706726074000073, + 13.200927734000061 + ], + [ + 105.703918457000043, + 13.202514648000033 + ], + [ + 105.700683594000054, + 13.203918457000043 + ], + [ + 105.697875977000081, + 13.205078125000057 + ], + [ + 105.695129395000038, + 13.206481934000067 + ], + [ + 105.690673828000058, + 13.207519531000059 + ], + [ + 105.686279297000056, + 13.207702637000068 + ], + [ + 105.683105469000054, + 13.207275391000053 + ], + [ + 105.679321289000086, + 13.207092285000044 + ], + [ + 105.675476074000073, + 13.206481934000067 + ], + [ + 105.672302246000072, + 13.206115723000039 + ], + [ + 105.669311523000033, + 13.205688477000024 + ], + [ + 105.665527344000054, + 13.205505371000072 + ], + [ + 105.662475586000085, + 13.205688477000024 + ], + [ + 105.659301758000083, + 13.206481934000067 + ], + [ + 105.656677246000072, + 13.207702637000068 + ], + [ + 105.653503418000071, + 13.209472656000059 + ], + [ + 105.649902344000054, + 13.211914062000062 + ], + [ + 105.645874023000033, + 13.213317871000072 + ], + [ + 105.641906738000046, + 13.214721680000025 + ], + [ + 105.638916016000053, + 13.21569824200003 + ], + [ + 105.634704590000069, + 13.216491699000073 + ], + [ + 105.631286621000072, + 13.217285156000059 + ], + [ + 105.627929687000062, + 13.218078613000046 + ], + [ + 105.624694824000073, + 13.218688965000069 + ], + [ + 105.621093750000057, + 13.219909668000071 + ], + [ + 105.617675781000059, + 13.221130371000072 + ], + [ + 105.615112305000082, + 13.222900391000053 + ], + [ + 105.612670898000033, + 13.225524902000075 + ], + [ + 105.608520508000083, + 13.229125977000024 + ], + [ + 105.602111816000047, + 13.230712891000053 + ], + [ + 105.598083496000072, + 13.230712891000053 + ], + [ + 105.593688965000069, + 13.230712891000053 + ], + [ + 105.589294434000067, + 13.230102539000029 + ], + [ + 105.589294434000067, + 13.236083984000061 + ], + [ + 105.589111328000058, + 13.240905762000068 + ], + [ + 105.588684082000043, + 13.244079590000069 + ], + [ + 105.587890625000057, + 13.247314453000058 + ], + [ + 105.586914062000062, + 13.250671387000068 + ], + [ + 105.581115723000039, + 13.256530762000068 + ], + [ + 105.578918457000043, + 13.259094238000046 + ], + [ + 105.575683594000054, + 13.262512207000043 + ], + [ + 105.568725586000085, + 13.269897461000028 + ], + [ + 105.564514160000044, + 13.271911621000072 + ], + [ + 105.560302734000061, + 13.273498535000044 + ], + [ + 105.551879883000083, + 13.276916504000042 + ], + [ + 105.549072266000053, + 13.278503418000071 + ], + [ + 105.549499512000068, + 13.281494141000053 + ], + [ + 105.548706055000082, + 13.284301758000026 + ], + [ + 105.549926758000083, + 13.287109375000057 + ], + [ + 105.549926758000083, + 13.29132080100004 + ], + [ + 105.550903320000089, + 13.295471191000047 + ], + [ + 105.549926758000083, + 13.300476074000073 + ], + [ + 105.550109863000046, + 13.304687500000057 + ], + [ + 105.550903320000089, + 13.30889892600004 + ], + [ + 105.549926758000083, + 13.313110352000024 + ], + [ + 105.548889160000044, + 13.317077637000068 + ], + [ + 105.549926758000083, + 13.321899414000029 + ], + [ + 105.550292969000054, + 13.326904297000056 + ], + [ + 105.549682617000087, + 13.330871582000043 + ], + [ + 105.548706055000082, + 13.334106445000032 + ], + [ + 105.547119141000053, + 13.337890625000057 + ], + [ + 105.547729492000087, + 13.341674805000025 + ], + [ + 105.550109863000046, + 13.346679687000062 + ], + [ + 105.549926758000083, + 13.351318359000061 + ], + [ + 105.549316406000059, + 13.354675293000071 + ], + [ + 105.548278809000067, + 13.358520508000026 + ], + [ + 105.546875, + 13.363281250000057 + ], + [ + 105.545898437000062, + 13.36608886700003 + ], + [ + 105.545898437000062, + 13.369506836000028 + ], + [ + 105.547912598000039, + 13.374084473000039 + ], + [ + 105.549499512000068, + 13.377929687000062 + ], + [ + 105.549926758000083, + 13.382690430000025 + ], + [ + 105.550720215000069, + 13.386474609000061 + ], + [ + 105.551330566000047, + 13.390502930000025 + ], + [ + 105.550476074000073, + 13.393920898000033 + ], + [ + 105.550903320000089, + 13.397705078000058 + ], + [ + 105.550476074000073, + 13.401306152000075 + ], + [ + 105.550903320000089, + 13.404296875000057 + ], + [ + 105.551513672000056, + 13.408081055000025 + ], + [ + 105.550903320000089, + 13.411499023000033 + ], + [ + 105.549316406000059, + 13.413879395000038 + ], + [ + 105.547302246000072, + 13.416076660000044 + ], + [ + 105.545715332000043, + 13.420104980000076 + ], + [ + 105.544677734000061, + 13.424926758000026 + ], + [ + 105.544494629000042, + 13.427917480000076 + ], + [ + 105.544921875000057, + 13.431274414000029 + ], + [ + 105.545898437000062, + 13.434875488000046 + ], + [ + 105.545898437000062, + 13.438476562000062 + ], + [ + 105.544311523000033, + 13.441284180000025 + ], + [ + 105.541687012000068, + 13.444519043000071 + ], + [ + 105.538513184000067, + 13.445312500000057 + ], + [ + 105.537475586000085, + 13.44812011700003 + ], + [ + 105.540100098000039, + 13.452270508000026 + ], + [ + 105.542907715000069, + 13.45788574200003 + ], + [ + 105.543518066000047, + 13.462280273000033 + ], + [ + 105.546508789000086, + 13.46569824200003 + ], + [ + 105.549316406000059, + 13.468505859000061 + ], + [ + 105.550903320000089, + 13.470886230000076 + ], + [ + 105.552307129000042, + 13.473876953000058 + ], + [ + 105.554870605000076, + 13.478088379000042 + ], + [ + 105.558105469000054, + 13.480895996000072 + ], + [ + 105.560485840000069, + 13.482482910000044 + ], + [ + 105.563293457000043, + 13.485107422000056 + ], + [ + 105.565490723000039, + 13.488098145000038 + ], + [ + 105.566284180000082, + 13.49249267600004 + ], + [ + 105.566101074000073, + 13.497314453000058 + ], + [ + 105.565490723000039, + 13.501098633000026 + ], + [ + 105.565307617000087, + 13.505126953000058 + ], + [ + 105.565307617000087, + 13.508728027000075 + ], + [ + 105.565673828000058, + 13.514282227000024 + ], + [ + 105.565490723000039, + 13.519470215000069 + ], + [ + 105.565307617000087, + 13.522705078000058 + ], + [ + 105.564880371000072, + 13.52569580100004 + ], + [ + 105.562683105000076, + 13.540710449000073 + ], + [ + 105.562927246000072, + 13.543884277000075 + ], + [ + 105.565307617000087, + 13.551696777000075 + ], + [ + 105.566284180000082, + 13.555908203000058 + ], + [ + 105.566284180000082, + 13.561279297000056 + ], + [ + 105.56671142600004, + 13.564514160000044 + ], + [ + 105.567077637000068, + 13.567871094000054 + ], + [ + 105.567687988000046, + 13.571899414000029 + ], + [ + 105.568298340000069, + 13.57647705100004 + ], + [ + 105.568725586000085, + 13.580322266000053 + ], + [ + 105.569274902000075, + 13.584472656000059 + ], + [ + 105.570312500000057, + 13.589294434000067 + ], + [ + 105.571105957000043, + 13.59210205100004 + ], + [ + 105.571899414000086, + 13.595520020000038 + ], + [ + 105.572326660000044, + 13.600524902000075 + ], + [ + 105.572509766000053, + 13.60632324200003 + ], + [ + 105.572875977000081, + 13.611877441000047 + ], + [ + 105.573120117000087, + 13.61749267600004 + ], + [ + 105.573120117000087, + 13.622314453000058 + ], + [ + 105.572875977000081, + 13.625488281000059 + ], + [ + 105.570922852000081, + 13.632507324000073 + ], + [ + 105.570495605000076, + 13.635925293000071 + ], + [ + 105.571289062000062, + 13.639099121000072 + ], + [ + 105.572875977000081, + 13.641906738000046 + ], + [ + 105.573486328000058, + 13.646911621000072 + ], + [ + 105.576904297000056, + 13.652709961000028 + ], + [ + 105.575500488000046, + 13.660705566000047 + ], + [ + 105.575317383000083, + 13.669311523000033 + ], + [ + 105.573486328000058, + 13.671691895000038 + ], + [ + 105.570312500000057, + 13.679504395000038 + ], + [ + 105.570495605000076, + 13.689880371000072 + ], + [ + 105.564880371000072, + 13.708496094000054 + ], + [ + 105.552673340000069, + 13.725097656000059 + ], + [ + 105.551696777000075, + 13.728088379000042 + ], + [ + 105.548889160000044, + 13.739318848000039 + ], + [ + 105.544494629000042, + 13.74249267600004 + ], + [ + 105.540527344000054, + 13.745117187000062 + ], + [ + 105.536682129000042, + 13.746887207000043 + ], + [ + 105.533691406000059, + 13.749084473000039 + ], + [ + 105.532287598000039, + 13.753479004000042 + ], + [ + 105.531677246000072, + 13.756896973000039 + ], + [ + 105.531127930000082, + 13.76007080100004 + ], + [ + 105.527526855000076, + 13.763122559000067 + ], + [ + 105.524902344000054, + 13.765075684000067 + ], + [ + 105.524291992000087, + 13.768493652000075 + ], + [ + 105.524475098000039, + 13.772888184000067 + ], + [ + 105.522705078000058, + 13.775878906000059 + ], + [ + 105.522521973000039, + 13.778930664000029 + ], + [ + 105.524719238000046, + 13.782287598000039 + ], + [ + 105.527893066000047, + 13.786682129000042 + ], + [ + 105.528930664000086, + 13.790893555000025 + ], + [ + 105.528686523000033, + 13.793884277000075 + ], + [ + 105.52569580100004, + 13.797912598000039 + ], + [ + 105.525085449000073, + 13.802307129000042 + ], + [ + 105.528076172000056, + 13.806274414000029 + ], + [ + 105.525878906000059, + 13.812072754000042 + ], + [ + 105.524902344000054, + 13.816528320000032 + ], + [ + 105.521728516000053, + 13.819519043000071 + ], + [ + 105.521118164000086, + 13.822326660000044 + ], + [ + 105.520507812000062, + 13.825500488000046 + ], + [ + 105.520507812000062, + 13.829895020000038 + ], + [ + 105.521911621000072, + 13.833679199000073 + ], + [ + 105.521728516000053, + 13.836914062000062 + ], + [ + 105.524291992000087, + 13.840515137000068 + ], + [ + 105.526306152000075, + 13.843688965000069 + ], + [ + 105.526916504000042, + 13.846496582000043 + ], + [ + 105.528076172000056, + 13.851074219000054 + ], + [ + 105.531494141000053, + 13.854675293000071 + ], + [ + 105.535705566000047, + 13.856872559000067 + ], + [ + 105.538696289000086, + 13.860107422000056 + ], + [ + 105.542480469000054, + 13.861877441000047 + ], + [ + 105.545288086000085, + 13.864074707000043 + ], + [ + 105.548706055000082, + 13.865478516000053 + ], + [ + 105.552673340000069, + 13.864929199000073 + ], + [ + 105.555114746000072, + 13.867675781000059 + ], + [ + 105.558288574000073, + 13.871520996000072 + ], + [ + 105.563293457000043, + 13.872680664000029 + ], + [ + 105.565917969000054, + 13.87530517600004 + ], + [ + 105.567871094000054, + 13.877929687000062 + ], + [ + 105.570495605000076, + 13.879699707000043 + ], + [ + 105.574096680000082, + 13.882080078000058 + ], + [ + 105.576721191000047, + 13.884704590000069 + ], + [ + 105.579711914000086, + 13.886901855000076 + ], + [ + 105.584716797000056, + 13.886108398000033 + ], + [ + 105.587890625000057, + 13.883483887000068 + ], + [ + 105.590881348000039, + 13.883728027000075 + ], + [ + 105.594482422000056, + 13.881530762000068 + ], + [ + 105.598510742000087, + 13.880493164000029 + ], + [ + 105.601501465000069, + 13.878479004000042 + ], + [ + 105.603515625000057, + 13.874694824000073 + ], + [ + 105.605102539000086, + 13.871093750000057 + ], + [ + 105.608886719000054, + 13.869873047000056 + ], + [ + 105.611328125000057, + 13.867126465000069 + ], + [ + 105.613281250000057, + 13.864074707000043 + ], + [ + 105.61749267600004, + 13.861694336000028 + ], + [ + 105.619323730000076, + 13.85827636700003 + ], + [ + 105.623291016000053, + 13.856872559000067 + ], + [ + 105.627075195000089, + 13.85772705100004 + ], + [ + 105.627685547000056, + 13.861083984000061 + ], + [ + 105.629272461000085, + 13.864501953000058 + ], + [ + 105.632507324000073, + 13.86608886700003 + ], + [ + 105.636291504000042, + 13.868530273000033 + ], + [ + 105.641723633000083, + 13.869079590000069 + ], + [ + 105.646484375000057, + 13.869873047000056 + ], + [ + 105.649719238000046, + 13.868713379000042 + ], + [ + 105.653686523000033, + 13.869506836000028 + ], + [ + 105.657470703000058, + 13.872070312000062 + ], + [ + 105.661682129000042, + 13.872680664000029 + ], + [ + 105.665527344000054, + 13.874694824000073 + ], + [ + 105.670104980000076, + 13.872680664000029 + ], + [ + 105.674316406000059, + 13.871093750000057 + ], + [ + 105.675720215000069, + 13.867919922000056 + ], + [ + 105.677917480000076, + 13.865295410000044 + ], + [ + 105.680297852000081, + 13.863281250000057 + ], + [ + 105.683715820000089, + 13.863891602000024 + ], + [ + 105.687072754000042, + 13.86608886700003 + ], + [ + 105.69171142600004, + 13.866516113000046 + ], + [ + 105.695129395000038, + 13.864318848000039 + ], + [ + 105.697326660000044, + 13.862487793000071 + ], + [ + 105.700073242000087, + 13.865295410000044 + ], + [ + 105.703491211000085, + 13.865722656000059 + ], + [ + 105.707092285000044, + 13.867126465000069 + ], + [ + 105.711486816000047, + 13.867309570000032 + ], + [ + 105.713317871000072, + 13.869689941000047 + ], + [ + 105.714294434000067, + 13.872924805000025 + ], + [ + 105.714294434000067, + 13.877075195000032 + ], + [ + 105.714904785000044, + 13.880310059000067 + ], + [ + 105.713317871000072, + 13.883728027000075 + ], + [ + 105.709472656000059, + 13.884094238000046 + ], + [ + 105.706909180000082, + 13.885681152000075 + ], + [ + 105.706298828000058, + 13.888671875000057 + ], + [ + 105.703674316000047, + 13.889892578000058 + ], + [ + 105.704284668000071, + 13.893920898000033 + ], + [ + 105.704711914000086, + 13.897888184000067 + ], + [ + 105.702087402000075, + 13.900085449000073 + ], + [ + 105.700683594000054, + 13.904296875000057 + ], + [ + 105.70147705100004, + 13.908691406000059 + ], + [ + 105.704528809000067, + 13.910522461000028 + ], + [ + 105.707092285000044, + 13.912292480000076 + ], + [ + 105.709716797000056, + 13.915283203000058 + ], + [ + 105.712280273000033, + 13.917114258000026 + ], + [ + 105.716308594000054, + 13.917724609000061 + ], + [ + 105.720275879000042, + 13.918884277000075 + ], + [ + 105.723876953000058, + 13.919921875000057 + ], + [ + 105.728698730000076, + 13.920288086000028 + ], + [ + 105.732299805000082, + 13.920471191000047 + ], + [ + 105.736877441000047, + 13.920898437000062 + ], + [ + 105.740905762000068, + 13.921081543000071 + ], + [ + 105.744079590000069, + 13.921325684000067 + ], + [ + 105.748107910000044, + 13.922119141000053 + ], + [ + 105.752075195000089, + 13.92272949200003 + ], + [ + 105.755493164000086, + 13.922912598000039 + ], + [ + 105.758911133000083, + 13.923095703000058 + ], + [ + 105.763671875000057, + 13.922912598000039 + ], + [ + 105.767700195000089, + 13.922119141000053 + ], + [ + 105.771728516000053, + 13.921691895000038 + ], + [ + 105.774719238000046, + 13.921875 + ], + [ + 105.778320312000062, + 13.921875 + ], + [ + 105.78350830100004, + 13.922119141000053 + ], + [ + 105.789672852000081, + 13.922912598000039 + ], + [ + 105.794311523000033, + 13.923095703000058 + ], + [ + 105.798889160000044, + 13.92272949200003 + ], + [ + 105.803527832000043, + 13.92272949200003 + ], + [ + 105.809082031000059, + 13.922485352000024 + ], + [ + 105.815490723000039, + 13.922485352000024 + ], + [ + 105.821105957000043, + 13.922485352000024 + ], + [ + 105.826110840000069, + 13.922912598000039 + ], + [ + 105.830078125000057, + 13.923278809000067 + ], + [ + 105.834716797000056, + 13.923095703000058 + ], + [ + 105.838500977000081, + 13.922912598000039 + ], + [ + 105.842895508000083, + 13.922485352000024 + ], + [ + 105.846679687000062, + 13.92272949200003 + ], + [ + 105.850280762000068, + 13.92272949200003 + ], + [ + 105.853271484000061, + 13.922119141000053 + ], + [ + 105.856506348000039, + 13.921691895000038 + ], + [ + 105.863098145000038, + 13.921325684000067 + ], + [ + 105.869506836000085, + 13.921691895000038 + ], + [ + 105.872924805000082, + 13.922302246000072 + ], + [ + 105.877319336000085, + 13.923278809000067 + ], + [ + 105.880310059000067, + 13.924499512000068 + ], + [ + 105.883483887000068, + 13.92608642600004 + ], + [ + 105.886474609000061, + 13.927673340000069 + ], + [ + 105.890686035000044, + 13.930114746000072 + ], + [ + 105.894897461000085, + 13.932678223000039 + ], + [ + 105.897521973000039, + 13.935119629000042 + ], + [ + 105.900085449000073, + 13.936889648000033 + ], + [ + 105.904113770000038, + 13.934509277000075 + ], + [ + 105.908325195000089, + 13.931884766000053 + ], + [ + 105.910888672000056, + 13.930480957000043 + ], + [ + 105.913696289000086, + 13.929870605000076 + ], + [ + 105.921508789000086, + 13.929870605000076 + ], + [ + 105.929687500000057, + 13.931274414000029 + ], + [ + 105.937683105000076, + 13.93249511700003 + ], + [ + 105.946472168000071, + 13.934326172000056 + ], + [ + 105.959106445000089, + 13.932922363000046 + ], + [ + 105.965515137000068, + 13.930297852000024 + ], + [ + 105.973327637000068, + 13.925720215000069 + ], + [ + 105.980285645000038, + 13.924926758000026 + ], + [ + 105.986083984000061, + 13.923706055000025 + ], + [ + 105.990295410000044, + 13.924499512000068 + ], + [ + 105.991088867000087, + 13.927490234000061 + ], + [ + 105.993286133000083, + 13.929504395000038 + ], + [ + 105.996276855000076, + 13.930725098000039 + ], + [ + 106.00030517600004, + 13.930297852000024 + ], + [ + 106.005493164000086, + 13.929504395000038 + ], + [ + 106.008911133000083, + 13.929321289000029 + ], + [ + 106.012878418000071, + 13.927917480000076 + ], + [ + 106.017272949000073, + 13.927124023000033 + ], + [ + 106.021301270000038, + 13.925476074000073 + ], + [ + 106.024475098000039, + 13.924499512000068 + ], + [ + 106.028076172000056, + 13.923706055000025 + ], + [ + 106.032897949000073, + 13.922302246000072 + ], + [ + 106.037475586000085, + 13.920288086000028 + ], + [ + 106.041870117000087, + 13.919128418000071 + ], + [ + 106.048706055000082, + 13.918884277000075 + ], + [ + 106.056884766000053, + 13.918701172000056 + ], + [ + 106.061096191000047, + 13.91827392600004 + ], + [ + 106.067871094000054, + 13.91687011700003 + ], + [ + 106.074279785000044, + 13.915527344000054 + ], + [ + 106.079528809000067, + 13.914123535000044 + ], + [ + 106.085693359000061, + 13.913085937000062 + ], + [ + 106.091918945000089, + 13.912109375000057 + ], + [ + 106.097473145000038, + 13.910888672000056 + ], + [ + 106.102478027000075, + 13.910095215000069 + ], + [ + 106.106323242000087, + 13.910705566000047 + ], + [ + 106.106872559000067, + 13.914672852000024 + ], + [ + 106.106079102000081, + 13.91827392600004 + ], + [ + 106.105285645000038, + 13.922485352000024 + ], + [ + 106.104492187000062, + 13.926513672000056 + ], + [ + 106.104675293000071, + 13.931518555000025 + ], + [ + 106.104309082000043, + 13.935485840000069 + ], + [ + 106.104675293000071, + 13.939697266000053 + ], + [ + 106.106689453000058, + 13.944274902000075 + ], + [ + 106.105102539000086, + 13.948303223000039 + ], + [ + 106.104309082000043, + 13.952514648000033 + ], + [ + 106.104675293000071, + 13.957092285000044 + ], + [ + 106.104125977000081, + 13.960327148000033 + ], + [ + 106.102294922000056, + 13.963928223000039 + ], + [ + 106.104125977000081, + 13.966918945000032 + ], + [ + 106.106506348000039, + 13.969482422000056 + ], + [ + 106.104125977000081, + 13.972106934000067 + ], + [ + 106.102905273000033, + 13.97491455100004 + ], + [ + 106.100708008000083, + 13.978088379000042 + ], + [ + 106.09991455100004, + 13.982299805000025 + ], + [ + 106.100891113000046, + 13.985717773000033 + ], + [ + 106.102111816000047, + 13.990112305000025 + ], + [ + 106.106079102000081, + 13.992919922000056 + ], + [ + 106.111083984000061, + 13.993103027000075 + ], + [ + 106.115295410000044, + 13.993103027000075 + ], + [ + 106.119689941000047, + 13.993713379000042 + ], + [ + 106.122497559000067, + 13.996276855000076 + ], + [ + 106.123291016000053, + 13.999328613000046 + ], + [ + 106.126708984000061, + 13.999694824000073 + ], + [ + 106.128479004000042, + 14.001892090000069 + ], + [ + 106.127929687000062, + 14.005676270000038 + ], + [ + 106.130493164000086, + 14.009887695000032 + ], + [ + 106.134887695000089, + 14.014709473000039 + ], + [ + 106.139709473000039, + 14.016906738000046 + ], + [ + 106.143127441000047, + 14.016113281000059 + ], + [ + 106.146728516000053, + 14.014709473000039 + ], + [ + 106.149902344000054, + 14.015502930000025 + ], + [ + 106.153930664000086, + 14.016296387000068 + ], + [ + 106.157897949000073, + 14.017517090000069 + ], + [ + 106.161315918000071, + 14.01788330100004 + ], + [ + 106.165710449000073, + 14.018920898000033 + ], + [ + 106.169494629000042, + 14.021301270000038 + ], + [ + 106.172729492000087, + 14.02429199200003 + ], + [ + 106.175292969000054, + 14.026672363000046 + ], + [ + 106.174926758000083, + 14.030517578000058 + ], + [ + 106.177917480000076, + 14.035095215000069 + ], + [ + 106.178710937000062, + 14.038879395000038 + ], + [ + 106.177917480000076, + 14.04187011700003 + ], + [ + 106.178527832000043, + 14.045104980000076 + ], + [ + 106.181518555000082, + 14.048095703000058 + ], + [ + 106.182495117000087, + 14.052673340000069 + ], + [ + 106.184326172000056, + 14.055480957000043 + ], + [ + 106.185913086000085, + 14.059082031000059 + ], + [ + 106.188720703000058, + 14.062316895000038 + ], + [ + 106.186096191000047, + 14.064086914000029 + ], + [ + 106.182128906000059, + 14.067077637000068 + ], + [ + 106.178100586000085, + 14.069519043000071 + ], + [ + 106.174499512000068, + 14.072326660000044 + ], + [ + 106.171325684000067, + 14.073730469000054 + ], + [ + 106.167297363000046, + 14.075317383000026 + ], + [ + 106.163085937000062, + 14.078308105000076 + ], + [ + 106.158081055000082, + 14.080688477000024 + ], + [ + 106.155517578000058, + 14.081909180000025 + ], + [ + 106.152709961000085, + 14.083312988000046 + ], + [ + 106.149902344000054, + 14.085083008000026 + ], + [ + 106.147277832000043, + 14.087097168000071 + ], + [ + 106.143920898000033, + 14.089294434000067 + ], + [ + 106.142700195000089, + 14.092529297000056 + ], + [ + 106.139892578000058, + 14.096313477000024 + ], + [ + 106.137329102000081, + 14.099487305000025 + ], + [ + 106.134521484000061, + 14.101684570000032 + ], + [ + 106.130493164000086, + 14.103515625000057 + ], + [ + 106.126525879000042, + 14.105285645000038 + ], + [ + 106.124084473000039, + 14.107116699000073 + ], + [ + 106.121887207000043, + 14.109313965000069 + ], + [ + 106.120727539000086, + 14.112304687000062 + ], + [ + 106.120727539000086, + 14.117309570000032 + ], + [ + 106.120483398000033, + 14.122314453000058 + ], + [ + 106.118713379000042, + 14.126098633000026 + ], + [ + 106.117126465000069, + 14.128723145000038 + ], + [ + 106.115722656000059, + 14.131896973000039 + ], + [ + 106.114318848000039, + 14.135314941000047 + ], + [ + 106.112670898000033, + 14.14093017600004 + ], + [ + 106.111511230000076, + 14.145690918000071 + ], + [ + 106.111694336000085, + 14.150512695000032 + ], + [ + 106.112304687000062, + 14.154113770000038 + ], + [ + 106.112670898000033, + 14.158081055000025 + ], + [ + 106.112487793000071, + 14.161315918000071 + ], + [ + 106.112670898000033, + 14.164672852000024 + ], + [ + 106.113098145000038, + 14.168884277000075 + ], + [ + 106.113098145000038, + 14.173278809000067 + ], + [ + 106.112487793000071, + 14.177307129000042 + ], + [ + 106.111877441000047, + 14.181518555000025 + ], + [ + 106.110900879000042, + 14.184875488000046 + ], + [ + 106.107910156000059, + 14.1875 + ], + [ + 106.104675293000071, + 14.188476562000062 + ], + [ + 106.100280762000068, + 14.188476562000062 + ], + [ + 106.095703125000057, + 14.188720703000058 + ], + [ + 106.090881348000039, + 14.189270020000038 + ], + [ + 106.086486816000047, + 14.189697266000053 + ], + [ + 106.083312988000046, + 14.190673828000058 + ], + [ + 106.079284668000071, + 14.192321777000075 + ], + [ + 106.075317383000083, + 14.192687988000046 + ], + [ + 106.070678711000085, + 14.194702148000033 + ], + [ + 106.067077637000068, + 14.196105957000043 + ], + [ + 106.063293457000043, + 14.196289062000062 + ], + [ + 106.059326172000056, + 14.19812011700003 + ], + [ + 106.055297852000081, + 14.200317383000026 + ], + [ + 106.052307129000042, + 14.202270508000026 + ], + [ + 106.051330566000047, + 14.205322266000053 + ], + [ + 106.051879883000083, + 14.209106445000032 + ], + [ + 106.050903320000089, + 14.211914062000062 + ], + [ + 106.049072266000053, + 14.215087891000053 + ], + [ + 106.046081543000071, + 14.218688965000069 + ], + [ + 106.042114258000083, + 14.222106934000067 + ], + [ + 106.038696289000086, + 14.224304199000073 + ], + [ + 106.036499023000033, + 14.227111816000047 + ], + [ + 106.034484863000046, + 14.230895996000072 + ], + [ + 106.034484863000046, + 14.234924316000047 + ], + [ + 106.032104492000087, + 14.238891602000024 + ], + [ + 106.030517578000058, + 14.243530273000033 + ], + [ + 106.027526855000076, + 14.245910645000038 + ], + [ + 106.028076172000056, + 14.248718262000068 + ], + [ + 106.027893066000047, + 14.252502441000047 + ], + [ + 106.026489258000083, + 14.25811767600004 + ], + [ + 106.027282715000069, + 14.262695312000062 + ], + [ + 106.030090332000043, + 14.265075684000067 + ], + [ + 106.033325195000089, + 14.267272949000073 + ], + [ + 106.034912109000061, + 14.270507812000062 + ], + [ + 106.033081055000082, + 14.273315430000025 + ], + [ + 106.032470703000058, + 14.277282715000069 + ], + [ + 106.029479980000076, + 14.282287598000039 + ], + [ + 106.028320312000062, + 14.285705566000047 + ], + [ + 106.027709961000085, + 14.289672852000024 + ], + [ + 106.024902344000054, + 14.295104980000076 + ], + [ + 106.023498535000044, + 14.299316406000059 + ], + [ + 106.023071289000086, + 14.302307129000042 + ], + [ + 106.023498535000044, + 14.305480957000043 + ], + [ + 106.02569580100004, + 14.30749511700003 + ], + [ + 106.023498535000044, + 14.311523437000062 + ], + [ + 106.019470215000069, + 14.314514160000044 + ], + [ + 106.015075684000067, + 14.314514160000044 + ], + [ + 106.010681152000075, + 14.311706543000071 + ], + [ + 106.007324219000054, + 14.310913086000028 + ], + [ + 106.003112793000071, + 14.312683105000076 + ], + [ + 106.002502441000047, + 14.317687988000046 + ], + [ + 105.999694824000073, + 14.321105957000043 + ], + [ + 105.996887207000043, + 14.324890137000068 + ], + [ + 105.996520996000072, + 14.329895020000038 + ], + [ + 105.997070312000062, + 14.335083008000026 + ], + [ + 105.998474121000072, + 14.338928223000039 + ], + [ + 106.000671387000068, + 14.343078613000046 + ], + [ + 105.998107910000044, + 14.346130371000072 + ], + [ + 105.995300293000071, + 14.349121094000054 + ], + [ + 105.996276855000076, + 14.353271484000061 + ], + [ + 105.998107910000044, + 14.357116699000073 + ], + [ + 105.998901367000087, + 14.361511230000076 + ], + [ + 106.000671387000068, + 14.364929199000073 + ], + [ + 106.000671387000068, + 14.368103027000075 + ], + [ + 106.001281738000046, + 14.371276855000076 + ], + [ + 106.004272461000085, + 14.369873047000056 + ], + [ + 106.008300781000059, + 14.366882324000073 + ], + [ + 106.010314941000047, + 14.363891602000024 + ], + [ + 106.012695312000062, + 14.361511230000076 + ], + [ + 106.016113281000059, + 14.35827636700003 + ], + [ + 106.018920898000033, + 14.353881836000028 + ], + [ + 106.023315430000082, + 14.350097656000059 + ], + [ + 106.026123047000056, + 14.347473145000038 + ], + [ + 106.028503418000071, + 14.345520020000038 + ], + [ + 106.031921387000068, + 14.344299316000047 + ], + [ + 106.037475586000085, + 14.344909668000071 + ], + [ + 106.042907715000069, + 14.343872070000032 + ], + [ + 106.045898437000062, + 14.346130371000072 + ], + [ + 106.050292969000054, + 14.348083496000072 + ], + [ + 106.054077148000033, + 14.345886230000076 + ], + [ + 106.058288574000073, + 14.344909668000071 + ], + [ + 106.060302734000061, + 14.349304199000073 + ], + [ + 106.063720703000058, + 14.350097656000059 + ], + [ + 106.066284180000082, + 14.351684570000032 + ], + [ + 106.069274902000075, + 14.350280762000068 + ], + [ + 106.072875977000081, + 14.346313477000024 + ], + [ + 106.076293945000089, + 14.341674805000025 + ], + [ + 106.079711914000086, + 14.338073730000076 + ], + [ + 106.082519531000059, + 14.339904785000044 + ], + [ + 106.083312988000046, + 14.344299316000047 + ], + [ + 106.084716797000056, + 14.347900391000053 + ], + [ + 106.084899902000075, + 14.352905273000033 + ], + [ + 106.083679199000073, + 14.35827636700003 + ], + [ + 106.082885742000087, + 14.363525391000053 + ], + [ + 106.086303711000085, + 14.365722656000059 + ], + [ + 106.088073730000076, + 14.367919922000056 + ], + [ + 106.090270996000072, + 14.371093750000057 + ], + [ + 106.094909668000071, + 14.372070312000062 + ], + [ + 106.100708008000083, + 14.370910645000038 + ], + [ + 106.103088379000042, + 14.374511719000054 + ], + [ + 106.104919434000067, + 14.370910645000038 + ], + [ + 106.106079102000081, + 14.367675781000059 + ], + [ + 106.109313965000069, + 14.366271973000039 + ], + [ + 106.112487793000071, + 14.363708496000072 + ], + [ + 106.116088867000087, + 14.361083984000061 + ], + [ + 106.120300293000071, + 14.358703613000046 + ], + [ + 106.123901367000087, + 14.360107422000056 + ], + [ + 106.127685547000056, + 14.361694336000028 + ], + [ + 106.131103516000053, + 14.364501953000058 + ], + [ + 106.133728027000075, + 14.366699219000054 + ], + [ + 106.136901855000076, + 14.368286133000026 + ], + [ + 106.139709473000039, + 14.369873047000056 + ], + [ + 106.144104004000042, + 14.371887207000043 + ], + [ + 106.148681641000053, + 14.370483398000033 + ], + [ + 106.151489258000083, + 14.368530273000033 + ], + [ + 106.154113770000038, + 14.364685059000067 + ], + [ + 106.155273437000062, + 14.361083984000061 + ], + [ + 106.157470703000058, + 14.35772705100004 + ], + [ + 106.159484863000046, + 14.354309082000043 + ], + [ + 106.163085937000062, + 14.352905273000033 + ], + [ + 106.165893555000082, + 14.351928711000028 + ], + [ + 106.169677734000061, + 14.350891113000046 + ], + [ + 106.172729492000087, + 14.350280762000068 + ], + [ + 106.177124023000033, + 14.350524902000075 + ], + [ + 106.182495117000087, + 14.350708008000026 + ], + [ + 106.186523437000062, + 14.351318359000061 + ], + [ + 106.189270020000038, + 14.353271484000061 + ], + [ + 106.192077637000068, + 14.356079102000024 + ], + [ + 106.194519043000071, + 14.359497070000032 + ], + [ + 106.196899414000086, + 14.362915039000029 + ], + [ + 106.198913574000073, + 14.365295410000044 + ], + [ + 106.200500488000046, + 14.368896484000061 + ], + [ + 106.204711914000086, + 14.371704102000024 + ], + [ + 106.207885742000087, + 14.370483398000033 + ], + [ + 106.210327148000033, + 14.368103027000075 + ], + [ + 106.215087891000053, + 14.365478516000053 + ], + [ + 106.218872070000089, + 14.367126465000069 + ], + [ + 106.222473145000038, + 14.370910645000038 + ], + [ + 106.225097656000059, + 14.374084473000039 + ], + [ + 106.225891113000046, + 14.378112793000071 + ], + [ + 106.225097656000059, + 14.381896973000039 + ], + [ + 106.226684570000089, + 14.384521484000061 + ], + [ + 106.228271484000061, + 14.387695312000062 + ], + [ + 106.230102539000086, + 14.390075684000067 + ], + [ + 106.231506348000039, + 14.393920898000033 + ], + [ + 106.233886719000054, + 14.396301270000038 + ], + [ + 106.237121582000043, + 14.398498535000044 + ], + [ + 106.237121582000043, + 14.403503418000071 + ], + [ + 106.237121582000043, + 14.40710449200003 + ], + [ + 106.236328125000057, + 14.410095215000069 + ], + [ + 106.238525391000053, + 14.414123535000044 + ], + [ + 106.237487793000071, + 14.419128418000071 + ], + [ + 106.237670898000033, + 14.424316406000059 + ], + [ + 106.237915039000086, + 14.427917480000076 + ], + [ + 106.241699219000054, + 14.429504395000038 + ], + [ + 106.244323730000076, + 14.432128906000059 + ], + [ + 106.244323730000076, + 14.435913086000028 + ], + [ + 106.247314453000058, + 14.438293457000043 + ], + [ + 106.250671387000068, + 14.439697266000053 + ], + [ + 106.252319336000085, + 14.443481445000032 + ], + [ + 106.250915527000075, + 14.446716309000067 + ], + [ + 106.249328613000046, + 14.450500488000046 + ], + [ + 106.245300293000071, + 14.453308105000076 + ], + [ + 106.243713379000042, + 14.456726074000073 + ], + [ + 106.24249267600004, + 14.460876465000069 + ], + [ + 106.242309570000089, + 14.464721680000025 + ], + [ + 106.245483398000033, + 14.467529297000056 + ], + [ + 106.248291016000053, + 14.470703125000057 + ], + [ + 106.249328613000046, + 14.473693848000039 + ], + [ + 106.249877930000082, + 14.477294922000056 + ], + [ + 106.250915527000075, + 14.482299805000025 + ], + [ + 106.251892090000069, + 14.485900879000042 + ], + [ + 106.254882812000062, + 14.487487793000071 + ], + [ + 106.259094238000046, + 14.486328125000057 + ], + [ + 106.262084961000085, + 14.481506348000039 + ], + [ + 106.264282227000081, + 14.477722168000071 + ], + [ + 106.26593017600004, + 14.474487305000025 + ], + [ + 106.268676758000083, + 14.477905273000033 + ], + [ + 106.273498535000044, + 14.477905273000033 + ], + [ + 106.277099609000061, + 14.47491455100004 + ], + [ + 106.279724121000072, + 14.471496582000043 + ], + [ + 106.283081055000082, + 14.472106934000067 + ], + [ + 106.287902832000043, + 14.472290039000029 + ], + [ + 106.290893555000082, + 14.469299316000047 + ], + [ + 106.293884277000075, + 14.467712402000075 + ], + [ + 106.295471191000047, + 14.463073730000076 + ], + [ + 106.294921875000057, + 14.460083008000026 + ], + [ + 106.295288086000085, + 14.456909180000025 + ], + [ + 106.297485352000081, + 14.454101562000062 + ], + [ + 106.299926758000083, + 14.452087402000075 + ], + [ + 106.304687500000057, + 14.452514648000033 + ], + [ + 106.30889892600004, + 14.451293945000032 + ], + [ + 106.311096191000047, + 14.447509766000053 + ], + [ + 106.312927246000072, + 14.443298340000069 + ], + [ + 106.315307617000087, + 14.441528320000032 + ], + [ + 106.318298340000069, + 14.441101074000073 + ], + [ + 106.321472168000071, + 14.44171142600004 + ], + [ + 106.325073242000087, + 14.441528320000032 + ], + [ + 106.329711914000086, + 14.439880371000072 + ], + [ + 106.333679199000073, + 14.44171142600004 + ], + [ + 106.336914062000062, + 14.443298340000069 + ], + [ + 106.339477539000086, + 14.444702148000033 + ], + [ + 106.342529297000056, + 14.446105957000043 + ], + [ + 106.346313477000081, + 14.447082520000038 + ], + [ + 106.349487305000082, + 14.447692871000072 + ], + [ + 106.353271484000061, + 14.44812011700003 + ], + [ + 106.356872559000067, + 14.449707031000059 + ], + [ + 106.359924316000047, + 14.450683594000054 + ], + [ + 106.362915039000086, + 14.451721191000047 + ], + [ + 106.366271973000039, + 14.453125 + ], + [ + 106.370727539000086, + 14.454284668000071 + ], + [ + 106.375671387000068, + 14.454284668000071 + ], + [ + 106.379882812000062, + 14.452880859000061 + ], + [ + 106.383483887000068, + 14.451721191000047 + ], + [ + 106.386718750000057, + 14.45147705100004 + ], + [ + 106.391296387000068, + 14.450683594000054 + ], + [ + 106.395080566000047, + 14.45007324200003 + ], + [ + 106.398498535000044, + 14.450500488000046 + ], + [ + 106.401489258000083, + 14.450683594000054 + ], + [ + 106.404724121000072, + 14.450683594000054 + ], + [ + 106.40850830100004, + 14.450927734000061 + ], + [ + 106.412109375000057, + 14.452087402000075 + ], + [ + 106.415527344000054, + 14.454895020000038 + ], + [ + 106.418518066000047, + 14.458496094000054 + ], + [ + 106.421875, + 14.462707520000038 + ], + [ + 106.422729492000087, + 14.466674805000025 + ], + [ + 106.422119141000053, + 14.469482422000056 + ], + [ + 106.422302246000072, + 14.473083496000072 + ], + [ + 106.424926758000083, + 14.476074219000054 + ], + [ + 106.427673340000069, + 14.477722168000071 + ], + [ + 106.430480957000043, + 14.478881836000028 + ], + [ + 106.433105469000054, + 14.480102539000029 + ], + [ + 106.435913086000085, + 14.482116699000073 + ], + [ + 106.438903809000067, + 14.485290527000075 + ], + [ + 106.440917969000054, + 14.489501953000058 + ], + [ + 106.440673828000058, + 14.492675781000059 + ], + [ + 106.438110352000081, + 14.495910645000038 + ], + [ + 106.434509277000075, + 14.498718262000068 + ], + [ + 106.432678223000039, + 14.501892090000069 + ], + [ + 106.431274414000086, + 14.505676270000038 + ], + [ + 106.430480957000043, + 14.511108398000033 + ], + [ + 106.430480957000043, + 14.516296387000068 + ], + [ + 106.432922363000046, + 14.520324707000043 + ], + [ + 106.436889648000033, + 14.524108887000068 + ], + [ + 106.440124512000068, + 14.525329590000069 + ], + [ + 106.443908691000047, + 14.52429199200003 + ], + [ + 106.447326660000044, + 14.522888184000067 + ], + [ + 106.450927734000061, + 14.521301270000038 + ], + [ + 106.454528809000067, + 14.519287109000061 + ], + [ + 106.457702637000068, + 14.51788330100004 + ], + [ + 106.460510254000042, + 14.516723633000026 + ], + [ + 106.463073730000076, + 14.515319824000073 + ], + [ + 106.466674805000082, + 14.513916016000053 + ], + [ + 106.471130371000072, + 14.512512207000043 + ], + [ + 106.475891113000046, + 14.512878418000071 + ], + [ + 106.478271484000061, + 14.515075684000067 + ], + [ + 106.479492187000062, + 14.51788330100004 + ], + [ + 106.477722168000071, + 14.521484375000057 + ], + [ + 106.475708008000083, + 14.523925781000059 + ], + [ + 106.472900391000053, + 14.526672363000046 + ], + [ + 106.470275879000042, + 14.529296875000057 + ], + [ + 106.468078613000046, + 14.531494141000053 + ], + [ + 106.465698242000087, + 14.533874512000068 + ], + [ + 106.462524414000086, + 14.537475586000028 + ], + [ + 106.459472656000059, + 14.54187011700003 + ], + [ + 106.458312988000046, + 14.547119141000053 + ], + [ + 106.459899902000075, + 14.550903320000032 + ], + [ + 106.461303711000085, + 14.553527832000043 + ], + [ + 106.464294434000067, + 14.555908203000058 + ], + [ + 106.467712402000075, + 14.557922363000046 + ], + [ + 106.470886230000076, + 14.558715820000032 + ], + [ + 106.474487305000082, + 14.560485840000069 + ], + [ + 106.478271484000061, + 14.5625 + ], + [ + 106.481323242000087, + 14.564697266000053 + ], + [ + 106.485290527000075, + 14.567504883000026 + ], + [ + 106.488525391000053, + 14.569885254000042 + ], + [ + 106.490905762000068, + 14.572326660000044 + ], + [ + 106.493896484000061, + 14.573913574000073 + ], + [ + 106.497070312000062, + 14.575683594000054 + ], + [ + 106.499328613000046, + 14.579895020000038 + ], + [ + 106.501525879000042, + 14.582702637000068 + ], + [ + 106.504272461000085, + 14.585327148000033 + ], + [ + 106.507324219000054, + 14.586914062000062 + ], + [ + 106.511291504000042, + 14.589111328000058 + ], + [ + 106.514709473000039, + 14.590515137000068 + ], + [ + 106.518493652000075, + 14.591918945000032 + ], + [ + 106.523315430000082, + 14.592895508000026 + ], + [ + 106.526672363000046, + 14.592529297000056 + ], + [ + 106.529907227000081, + 14.592285156000059 + ], + [ + 106.534729004000042, + 14.592285156000059 + ], + [ + 106.539672852000081, + 14.592529297000056 + ], + [ + 106.542907715000069, + 14.593322754000042 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 3.0111031959600001, + "Shape_Area": 0.23747579754699999, + "ADM1_EN": "Svay Rieng", + "ADM1_PCODE": "KH20", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105.811706543000071, + 11.589111328000058 + ], + [ + 105.813903809000067, + 11.584899902000075 + ], + [ + 105.817077637000068, + 11.581726074000073 + ], + [ + 105.816894531000059, + 11.578491211000028 + ], + [ + 105.815917969000054, + 11.575317383000026 + ], + [ + 105.817871094000054, + 11.571899414000029 + ], + [ + 105.819885254000042, + 11.568481445000032 + ], + [ + 105.822326660000044, + 11.570495605000076 + ], + [ + 105.825317383000083, + 11.568115234000061 + ], + [ + 105.826721191000047, + 11.565490723000039 + ], + [ + 105.829528809000067, + 11.564880371000072 + ], + [ + 105.833679199000073, + 11.565124512000068 + ], + [ + 105.837890625000057, + 11.563903809000067 + ], + [ + 105.840881348000039, + 11.563476562000062 + ], + [ + 105.844116211000085, + 11.563903809000067 + ], + [ + 105.846130371000072, + 11.561706543000071 + ], + [ + 105.848327637000068, + 11.563720703000058 + ], + [ + 105.851684570000089, + 11.562683105000076 + ], + [ + 105.857116699000073, + 11.564880371000072 + ], + [ + 105.861511230000076, + 11.565917969000054 + ], + [ + 105.863525391000053, + 11.562316895000038 + ], + [ + 105.866516113000046, + 11.561096191000047 + ], + [ + 105.868896484000061, + 11.556884766000053 + ], + [ + 105.872497559000067, + 11.553710937000062 + ], + [ + 105.876281738000046, + 11.550292969000054 + ], + [ + 105.878112793000071, + 11.547119141000053 + ], + [ + 105.880676270000038, + 11.544128418000071 + ], + [ + 105.882690430000082, + 11.539672852000024 + ], + [ + 105.884094238000046, + 11.537109375000057 + ], + [ + 105.88311767600004, + 11.534301758000026 + ], + [ + 105.885681152000075, + 11.53210449200003 + ], + [ + 105.885498047000056, + 11.528076172000056 + ], + [ + 105.884887695000089, + 11.522888184000067 + ], + [ + 105.883911133000083, + 11.517089844000054 + ], + [ + 105.882873535000044, + 11.512329102000024 + ], + [ + 105.879882812000062, + 11.50811767600004 + ], + [ + 105.880126953000058, + 11.502502441000047 + ], + [ + 105.880310059000067, + 11.499511719000054 + ], + [ + 105.881530762000068, + 11.496093750000057 + ], + [ + 105.884277344000054, + 11.492919922000056 + ], + [ + 105.884521484000061, + 11.488708496000072 + ], + [ + 105.884704590000069, + 11.485290527000075 + ], + [ + 105.881896973000039, + 11.483093262000068 + ], + [ + 105.879699707000043, + 11.480712891000053 + ], + [ + 105.878295898000033, + 11.477478027000075 + ], + [ + 105.878723145000038, + 11.472900391000053 + ], + [ + 105.877502441000047, + 11.469116211000028 + ], + [ + 105.876281738000046, + 11.465881348000039 + ], + [ + 105.875488281000059, + 11.461486816000047 + ], + [ + 105.878906250000057, + 11.460693359000061 + ], + [ + 105.879882812000062, + 11.457275391000053 + ], + [ + 105.881713867000087, + 11.454895020000038 + ], + [ + 105.885498047000056, + 11.454101562000062 + ], + [ + 105.887878418000071, + 11.450927734000061 + ], + [ + 105.892517090000069, + 11.451721191000047 + ], + [ + 105.896911621000072, + 11.450683594000054 + ], + [ + 105.900329590000069, + 11.451293945000032 + ], + [ + 105.901123047000056, + 11.44812011700003 + ], + [ + 105.903503418000071, + 11.445312500000057 + ], + [ + 105.903930664000086, + 11.442077637000068 + ], + [ + 105.903503418000071, + 11.438293457000043 + ], + [ + 105.901916504000042, + 11.434509277000075 + ], + [ + 105.901672363000046, + 11.430114746000072 + ], + [ + 105.898681641000053, + 11.427490234000061 + ], + [ + 105.894897461000085, + 11.426330566000047 + ], + [ + 105.891723633000083, + 11.425292969000054 + ], + [ + 105.890075684000067, + 11.42272949200003 + ], + [ + 105.889526367000087, + 11.419128418000071 + ], + [ + 105.886718750000057, + 11.415710449000073 + ], + [ + 105.885314941000047, + 11.411926270000038 + ], + [ + 105.882324219000054, + 11.409301758000026 + ], + [ + 105.878479004000042, + 11.40710449200003 + ], + [ + 105.874084473000039, + 11.404907227000024 + ], + [ + 105.875122070000089, + 11.400085449000073 + ], + [ + 105.877075195000089, + 11.395507812000062 + ], + [ + 105.878479004000042, + 11.390319824000073 + ], + [ + 105.875671387000068, + 11.385681152000075 + ], + [ + 105.873107910000044, + 11.382690430000025 + ], + [ + 105.871520996000072, + 11.379699707000043 + ], + [ + 105.871276855000076, + 11.376708984000061 + ], + [ + 105.872070312000062, + 11.373291016000053 + ], + [ + 105.875488281000059, + 11.371704102000024 + ], + [ + 105.878295898000033, + 11.370727539000029 + ], + [ + 105.880920410000044, + 11.369506836000028 + ], + [ + 105.883483887000068, + 11.367675781000059 + ], + [ + 105.884887695000089, + 11.364685059000067 + ], + [ + 105.884521484000061, + 11.360107422000056 + ], + [ + 105.881896973000039, + 11.355712891000053 + ], + [ + 105.879516602000081, + 11.352294922000056 + ], + [ + 105.878112793000071, + 11.347290039000029 + ], + [ + 105.878295898000033, + 11.342712402000075 + ], + [ + 105.878723145000038, + 11.337890625000057 + ], + [ + 105.878112793000071, + 11.332519531000059 + ], + [ + 105.875488281000059, + 11.328918457000043 + ], + [ + 105.872680664000086, + 11.326110840000069 + ], + [ + 105.870117187000062, + 11.322875977000024 + ], + [ + 105.868530273000033, + 11.318298340000069 + ], + [ + 105.868896484000061, + 11.3125 + ], + [ + 105.871093750000057, + 11.309082031000059 + ], + [ + 105.871704102000081, + 11.305725098000039 + ], + [ + 105.871704102000081, + 11.302307129000042 + ], + [ + 105.870300293000071, + 11.297912598000039 + ], + [ + 105.867919922000056, + 11.294677734000061 + ], + [ + 105.864929199000073, + 11.291687012000068 + ], + [ + 105.864685059000067, + 11.287902832000043 + ], + [ + 105.865295410000044, + 11.285095215000069 + ], + [ + 105.867675781000059, + 11.282714844000054 + ], + [ + 105.870727539000086, + 11.283691406000059 + ], + [ + 105.873474121000072, + 11.286071777000075 + ], + [ + 105.877502441000047, + 11.288085937000062 + ], + [ + 105.880920410000044, + 11.287902832000043 + ], + [ + 105.883911133000083, + 11.287902832000043 + ], + [ + 105.886901855000076, + 11.287902832000043 + ], + [ + 105.890686035000044, + 11.288696289000029 + ], + [ + 105.894104004000042, + 11.290100098000039 + ], + [ + 105.897705078000058, + 11.289672852000024 + ], + [ + 105.90069580100004, + 11.287292480000076 + ], + [ + 105.904113770000038, + 11.284729004000042 + ], + [ + 105.907897949000073, + 11.286682129000042 + ], + [ + 105.908874512000068, + 11.28350830100004 + ], + [ + 105.907897949000073, + 11.279113770000038 + ], + [ + 105.90850830100004, + 11.274719238000046 + ], + [ + 105.911315918000071, + 11.270690918000071 + ], + [ + 105.912292480000076, + 11.266723633000026 + ], + [ + 105.910888672000056, + 11.262329102000024 + ], + [ + 105.908874512000068, + 11.258483887000068 + ], + [ + 105.907714844000054, + 11.255310059000067 + ], + [ + 105.908081055000082, + 11.251708984000061 + ], + [ + 105.909301758000083, + 11.247680664000029 + ], + [ + 105.910705566000047, + 11.243896484000061 + ], + [ + 105.911682129000042, + 11.239501953000058 + ], + [ + 105.914123535000044, + 11.235717773000033 + ], + [ + 105.915710449000073, + 11.23327636700003 + ], + [ + 105.917297363000046, + 11.230895996000072 + ], + [ + 105.919311523000033, + 11.228088379000042 + ], + [ + 105.921325684000067, + 11.225280762000068 + ], + [ + 105.924316406000059, + 11.221313477000024 + ], + [ + 105.928100586000085, + 11.217285156000059 + ], + [ + 105.931701660000044, + 11.21569824200003 + ], + [ + 105.933715820000089, + 11.212280273000033 + ], + [ + 105.936096191000047, + 11.210693359000061 + ], + [ + 105.938476562000062, + 11.208129883000026 + ], + [ + 105.942687988000046, + 11.205688477000024 + ], + [ + 105.947082520000038, + 11.203674316000047 + ], + [ + 105.951110840000069, + 11.201904297000056 + ], + [ + 105.956115723000039, + 11.199279785000044 + ], + [ + 105.961120605000076, + 11.197326660000044 + ], + [ + 105.966125488000046, + 11.195922852000024 + ], + [ + 105.970703125000057, + 11.197326660000044 + ], + [ + 105.975708008000083, + 11.198730469000054 + ], + [ + 105.978881836000085, + 11.197326660000044 + ], + [ + 105.98272705100004, + 11.195129395000038 + ], + [ + 105.985900879000042, + 11.194274902000075 + ], + [ + 105.988708496000072, + 11.193725586000028 + ], + [ + 105.991882324000073, + 11.192871094000054 + ], + [ + 105.994873047000056, + 11.191894531000059 + ], + [ + 106.011108398000033, + 11.190124512000068 + ], + [ + 106.013916016000053, + 11.186096191000047 + ], + [ + 106.014282227000081, + 11.181884766000053 + ], + [ + 106.014526367000087, + 11.178527832000043 + ], + [ + 106.015075684000067, + 11.17468261700003 + ], + [ + 106.015502930000082, + 11.170288086000028 + ], + [ + 106.016113281000059, + 11.16491699200003 + ], + [ + 106.016723633000083, + 11.159729004000042 + ], + [ + 106.017272949000073, + 11.154296875000057 + ], + [ + 106.018310547000056, + 11.149719238000046 + ], + [ + 106.019470215000069, + 11.146484375000057 + ], + [ + 106.021118164000086, + 11.143676758000026 + ], + [ + 106.023071289000086, + 11.140686035000044 + ], + [ + 106.02569580100004, + 11.138671875000057 + ], + [ + 106.028320312000062, + 11.137084961000028 + ], + [ + 106.032104492000087, + 11.134887695000032 + ], + [ + 106.035095215000069, + 11.133483887000068 + ], + [ + 106.038330078000058, + 11.132324219000054 + ], + [ + 106.042480469000054, + 11.130493164000029 + ], + [ + 106.047119141000053, + 11.127685547000056 + ], + [ + 106.049499512000068, + 11.126098633000026 + ], + [ + 106.053527832000043, + 11.123107910000044 + ], + [ + 106.057495117000087, + 11.119873047000056 + ], + [ + 106.059875488000046, + 11.118103027000075 + ], + [ + 106.062683105000076, + 11.115905762000068 + ], + [ + 106.065917969000054, + 11.112670898000033 + ], + [ + 106.068725586000085, + 11.109130859000061 + ], + [ + 106.070922852000081, + 11.104919434000067 + ], + [ + 106.073120117000087, + 11.100280762000068 + ], + [ + 106.078491211000085, + 11.09851074200003 + ], + [ + 106.082275391000053, + 11.100280762000068 + ], + [ + 106.085876465000069, + 11.100524902000075 + ], + [ + 106.089111328000058, + 11.100524902000075 + ], + [ + 106.091918945000089, + 11.095703125000057 + ], + [ + 106.094482422000056, + 11.09210205100004 + ], + [ + 106.097290039000086, + 11.089294434000067 + ], + [ + 106.100097656000059, + 11.085693359000061 + ], + [ + 106.098876953000058, + 11.080688477000024 + ], + [ + 106.098876953000058, + 11.077514648000033 + ], + [ + 106.100891113000046, + 11.07452392600004 + ], + [ + 106.103698730000076, + 11.072692871000072 + ], + [ + 106.107116699000073, + 11.071289062000062 + ], + [ + 106.110107422000056, + 11.074707031000059 + ], + [ + 106.111694336000085, + 11.078308105000076 + ], + [ + 106.114501953000058, + 11.081298828000058 + ], + [ + 106.118530273000033, + 11.084472656000059 + ], + [ + 106.120910645000038, + 11.088317871000072 + ], + [ + 106.124511719000054, + 11.089721680000025 + ], + [ + 106.128295898000033, + 11.090881348000039 + ], + [ + 106.130920410000044, + 11.092285156000059 + ], + [ + 106.134887695000089, + 11.094482422000056 + ], + [ + 106.138305664000086, + 11.096496582000043 + ], + [ + 106.141296387000068, + 11.099304199000073 + ], + [ + 106.144897461000085, + 11.101318359000061 + ], + [ + 106.149719238000046, + 11.102294922000056 + ], + [ + 106.153686523000033, + 11.101501465000069 + ], + [ + 106.156677246000072, + 11.099121094000054 + ], + [ + 106.15850830100004, + 11.096923828000058 + ], + [ + 106.160522461000085, + 11.093688965000069 + ], + [ + 106.162475586000085, + 11.090881348000039 + ], + [ + 106.164916992000087, + 11.087097168000071 + ], + [ + 106.166687012000068, + 11.084106445000032 + ], + [ + 106.168518066000047, + 11.081481934000067 + ], + [ + 106.170288086000085, + 11.078674316000047 + ], + [ + 106.172729492000087, + 11.074707031000059 + ], + [ + 106.174926758000083, + 11.071289062000062 + ], + [ + 106.177124023000033, + 11.067871094000054 + ], + [ + 106.179504395000038, + 11.064270020000038 + ], + [ + 106.182128906000059, + 11.060302734000061 + ], + [ + 106.184509277000075, + 11.056091309000067 + ], + [ + 106.187316895000038, + 11.052307129000042 + ], + [ + 106.187927246000072, + 11.048706055000025 + ], + [ + 106.188110352000081, + 11.045288086000028 + ], + [ + 106.188476562000062, + 11.042114258000026 + ], + [ + 106.189270020000038, + 11.037292480000076 + ], + [ + 106.189514160000044, + 11.032470703000058 + ], + [ + 106.190124512000068, + 11.028930664000029 + ], + [ + 106.190307617000087, + 11.023925781000059 + ], + [ + 106.190490723000039, + 11.019470215000069 + ], + [ + 106.191284180000082, + 11.01593017600004 + ], + [ + 106.192871094000054, + 11.010925293000071 + ], + [ + 106.194091797000056, + 11.006103516000053 + ], + [ + 106.194091797000056, + 11.001892090000069 + ], + [ + 106.195129395000038, + 10.998291016000053 + ], + [ + 106.196289062000062, + 10.994689941000047 + ], + [ + 106.197875977000081, + 10.991699219000054 + ], + [ + 106.200317383000083, + 10.988525391000053 + ], + [ + 106.203308105000076, + 10.983703613000046 + ], + [ + 106.205078125000057, + 10.979675293000071 + ], + [ + 106.205688477000081, + 10.976501465000069 + ], + [ + 106.202087402000075, + 10.974121094000054 + ], + [ + 106.198120117000087, + 10.973083496000072 + ], + [ + 106.194274902000075, + 10.972473145000038 + ], + [ + 106.190307617000087, + 10.972106934000067 + ], + [ + 106.186523437000062, + 10.973083496000072 + ], + [ + 106.183288574000073, + 10.97351074200003 + ], + [ + 106.179870605000076, + 10.974121094000054 + ], + [ + 106.176879883000083, + 10.975280762000068 + ], + [ + 106.174072266000053, + 10.976684570000032 + ], + [ + 106.170715332000043, + 10.978088379000042 + ], + [ + 106.166687012000068, + 10.978271484000061 + ], + [ + 106.162292480000076, + 10.978698730000076 + ], + [ + 106.157897949000073, + 10.979675293000071 + ], + [ + 106.154907227000081, + 10.981872559000067 + ], + [ + 106.151672363000046, + 10.981079102000024 + ], + [ + 106.148925781000059, + 10.979125977000024 + ], + [ + 106.145690918000071, + 10.978698730000076 + ], + [ + 106.143493652000075, + 10.976501465000069 + ], + [ + 106.143920898000033, + 10.971679687000062 + ], + [ + 106.144897461000085, + 10.967529297000056 + ], + [ + 106.145507812000062, + 10.963684082000043 + ], + [ + 106.145507812000062, + 10.960327148000033 + ], + [ + 106.144714355000076, + 10.957275391000053 + ], + [ + 106.145080566000047, + 10.954101562000062 + ], + [ + 106.145324707000043, + 10.950500488000046 + ], + [ + 106.148315430000082, + 10.946716309000067 + ], + [ + 106.15069580100004, + 10.942321777000075 + ], + [ + 106.150085449000073, + 10.938110352000024 + ], + [ + 106.148315430000082, + 10.934082031000059 + ], + [ + 106.146484375000057, + 10.931518555000025 + ], + [ + 106.144714355000076, + 10.929077148000033 + ], + [ + 106.14288330100004, + 10.92608642600004 + ], + [ + 106.141113281000059, + 10.92272949200003 + ], + [ + 106.138671875000057, + 10.917724609000061 + ], + [ + 106.142089844000054, + 10.910522461000028 + ], + [ + 106.144897461000085, + 10.905883789000029 + ], + [ + 106.148315430000082, + 10.903320312000062 + ], + [ + 106.150878906000059, + 10.900329590000069 + ], + [ + 106.153320312000062, + 10.897277832000043 + ], + [ + 106.155517578000058, + 10.895080566000047 + ], + [ + 106.158325195000089, + 10.892089844000054 + ], + [ + 106.161499023000033, + 10.888488770000038 + ], + [ + 106.163513184000067, + 10.885925293000071 + ], + [ + 106.165283203000058, + 10.883300781000059 + ], + [ + 106.167114258000083, + 10.879272461000028 + ], + [ + 106.168884277000075, + 10.876098633000026 + ], + [ + 106.170104980000076, + 10.873474121000072 + ], + [ + 106.171691895000038, + 10.870117187000062 + ], + [ + 106.173522949000073, + 10.86749267600004 + ], + [ + 106.174682617000087, + 10.864685059000067 + ], + [ + 106.17608642600004, + 10.861877441000047 + ], + [ + 106.177490234000061, + 10.859130859000061 + ], + [ + 106.179321289000086, + 10.855285645000038 + ], + [ + 106.181884766000053, + 10.850708008000026 + ], + [ + 106.184326172000056, + 10.846130371000072 + ], + [ + 106.186279297000056, + 10.842895508000026 + ], + [ + 106.188110352000081, + 10.838928223000039 + ], + [ + 106.188720703000058, + 10.834716797000056 + ], + [ + 106.188720703000058, + 10.830871582000043 + ], + [ + 106.188903809000067, + 10.815490723000039 + ], + [ + 106.189270020000038, + 10.804870605000076 + ], + [ + 106.189514160000044, + 10.790710449000073 + ], + [ + 106.164916992000087, + 10.811706543000071 + ], + [ + 106.161682129000042, + 10.811279297000056 + ], + [ + 106.15850830100004, + 10.811096191000047 + ], + [ + 106.155517578000058, + 10.810913086000028 + ], + [ + 106.152282715000069, + 10.810485840000069 + ], + [ + 106.148681641000053, + 10.810119629000042 + ], + [ + 106.145324707000043, + 10.809692383000026 + ], + [ + 106.141906738000046, + 10.809509277000075 + ], + [ + 106.137512207000043, + 10.809326172000056 + ], + [ + 106.131103516000053, + 10.809082031000059 + ], + [ + 106.127502441000047, + 10.80889892600004 + ], + [ + 106.124328613000046, + 10.80889892600004 + ], + [ + 106.121276855000076, + 10.808715820000032 + ], + [ + 106.116882324000073, + 10.808471680000025 + ], + [ + 106.113525391000053, + 10.809692383000026 + ], + [ + 106.110717773000033, + 10.808471680000025 + ], + [ + 106.106323242000087, + 10.808471680000025 + ], + [ + 106.100280762000068, + 10.808105469000054 + ], + [ + 106.094909668000071, + 10.808105469000054 + ], + [ + 106.089904785000044, + 10.808471680000025 + ], + [ + 106.085327148000033, + 10.80889892600004 + ], + [ + 106.080505371000072, + 10.809875488000046 + ], + [ + 106.076293945000089, + 10.810302734000061 + ], + [ + 106.073486328000058, + 10.810913086000028 + ], + [ + 106.036315918000071, + 10.834716797000056 + ], + [ + 106.033691406000059, + 10.836303711000028 + ], + [ + 106.030700684000067, + 10.838928223000039 + ], + [ + 106.027099609000061, + 10.841918945000032 + ], + [ + 106.023681641000053, + 10.844116211000028 + ], + [ + 106.019897461000085, + 10.846923828000058 + ], + [ + 106.016296387000068, + 10.849670410000044 + ], + [ + 106.012329102000081, + 10.853088379000042 + ], + [ + 106.008483887000068, + 10.856506348000039 + ], + [ + 106.005676270000038, + 10.859130859000061 + ], + [ + 106.003295898000033, + 10.861694336000028 + ], + [ + 106.001098633000083, + 10.863891602000024 + ], + [ + 105.998718262000068, + 10.866882324000073 + ], + [ + 105.997497559000067, + 10.869873047000056 + ], + [ + 105.992919922000056, + 10.874084473000039 + ], + [ + 105.987670898000033, + 10.879089355000076 + ], + [ + 105.982482910000044, + 10.884521484000061 + ], + [ + 105.976928711000085, + 10.889892578000058 + ], + [ + 105.972717285000044, + 10.893676758000026 + ], + [ + 105.966308594000054, + 10.898681641000053 + ], + [ + 105.959899902000075, + 10.903930664000029 + ], + [ + 105.953308105000076, + 10.909484863000046 + ], + [ + 105.948120117000087, + 10.913879395000038 + ], + [ + 105.945312500000057, + 10.918701172000056 + ], + [ + 105.944274902000075, + 10.912475586000028 + ], + [ + 105.945312500000057, + 10.908325195000032 + ], + [ + 105.947082520000038, + 10.905273437000062 + ], + [ + 105.948730469000054, + 10.901916504000042 + ], + [ + 105.950500488000046, + 10.899475098000039 + ], + [ + 105.952087402000075, + 10.897094727000024 + ], + [ + 105.952087402000075, + 10.892700195000032 + ], + [ + 105.95147705100004, + 10.889099121000072 + ], + [ + 105.954895020000038, + 10.886474609000061 + ], + [ + 105.954895020000038, + 10.882507324000073 + ], + [ + 105.951293945000089, + 10.880126953000058 + ], + [ + 105.949279785000044, + 10.876708984000061 + ], + [ + 105.945312500000057, + 10.873718262000068 + ], + [ + 105.940124512000068, + 10.871093750000057 + ], + [ + 105.9375, + 10.868896484000061 + ], + [ + 105.93389892600004, + 10.866516113000046 + ], + [ + 105.930480957000043, + 10.863891602000024 + ], + [ + 105.929687500000057, + 10.85968017600004 + ], + [ + 105.930725098000039, + 10.854919434000067 + ], + [ + 105.931701660000044, + 10.850280762000068 + ], + [ + 105.934326172000056, + 10.847717285000044 + ], + [ + 105.936706543000071, + 10.845275879000042 + ], + [ + 105.936096191000047, + 10.84069824200003 + ], + [ + 105.932128906000059, + 10.839294434000067 + ], + [ + 105.928894043000071, + 10.839477539000029 + ], + [ + 105.923889160000044, + 10.840087891000053 + ], + [ + 105.918701172000056, + 10.84069824200003 + ], + [ + 105.913330078000058, + 10.841674805000025 + ], + [ + 105.907287598000039, + 10.842712402000075 + ], + [ + 105.902709961000085, + 10.843322754000042 + ], + [ + 105.899108887000068, + 10.844116211000028 + ], + [ + 105.895324707000043, + 10.845520020000038 + ], + [ + 105.892517090000069, + 10.846496582000043 + ], + [ + 105.889099121000072, + 10.847717285000044 + ], + [ + 105.883300781000059, + 10.849670410000044 + ], + [ + 105.875915527000075, + 10.852722168000071 + ], + [ + 105.870483398000033, + 10.854492187000062 + ], + [ + 105.865112305000082, + 10.856689453000058 + ], + [ + 105.860900879000042, + 10.85827636700003 + ], + [ + 105.856506348000039, + 10.859924316000047 + ], + [ + 105.851928711000085, + 10.861877441000047 + ], + [ + 105.849121094000054, + 10.865295410000044 + ], + [ + 105.850708008000083, + 10.868896484000061 + ], + [ + 105.851928711000085, + 10.873474121000072 + ], + [ + 105.864318848000039, + 10.899475098000039 + ], + [ + 105.858886719000054, + 10.906494141000053 + ], + [ + 105.856689453000058, + 10.910888672000056 + ], + [ + 105.851684570000089, + 10.918090820000032 + ], + [ + 105.847900391000053, + 10.923278809000067 + ], + [ + 105.845886230000076, + 10.929077148000033 + ], + [ + 105.839721680000082, + 10.934875488000046 + ], + [ + 105.835693359000061, + 10.939270020000038 + ], + [ + 105.832519531000059, + 10.943298340000069 + ], + [ + 105.829895020000038, + 10.946289062000062 + ], + [ + 105.82647705100004, + 10.950500488000046 + ], + [ + 105.822875977000081, + 10.954528809000067 + ], + [ + 105.821105957000043, + 10.956909180000025 + ], + [ + 105.818481445000089, + 10.960083008000026 + ], + [ + 105.815490723000039, + 10.963684082000043 + ], + [ + 105.812927246000072, + 10.966674805000025 + ], + [ + 105.809875488000046, + 10.970275879000042 + ], + [ + 105.807678223000039, + 10.972900391000053 + ], + [ + 105.805480957000043, + 10.976928711000028 + ], + [ + 105.804077148000033, + 10.979675293000071 + ], + [ + 105.801696777000075, + 10.983703613000046 + ], + [ + 105.799499512000068, + 10.987915039000029 + ], + [ + 105.798278809000067, + 10.990478516000053 + ], + [ + 105.797485352000081, + 10.993713379000042 + ], + [ + 105.791076660000044, + 11.002502441000047 + ], + [ + 105.782104492000087, + 11.02429199200003 + ], + [ + 105.778686523000033, + 11.031677246000072 + ], + [ + 105.774475098000039, + 11.032287598000039 + ], + [ + 105.770080566000047, + 11.031311035000044 + ], + [ + 105.766723633000083, + 11.030517578000058 + ], + [ + 105.763305664000086, + 11.029724121000072 + ], + [ + 105.759277344000054, + 11.028503418000071 + ], + [ + 105.755920410000044, + 11.027099609000061 + ], + [ + 105.753295898000033, + 11.025878906000059 + ], + [ + 105.75030517600004, + 11.026672363000046 + ], + [ + 105.746704102000081, + 11.026672363000046 + ], + [ + 105.742919922000056, + 11.027099609000061 + ], + [ + 105.738525391000053, + 11.027099609000061 + ], + [ + 105.735473633000083, + 11.026489258000026 + ], + [ + 105.731323242000087, + 11.025878906000059 + ], + [ + 105.726318359000061, + 11.024719238000046 + ], + [ + 105.722473145000038, + 11.022888184000067 + ], + [ + 105.718078613000046, + 11.021118164000029 + ], + [ + 105.714477539000086, + 11.018920898000033 + ], + [ + 105.711730957000043, + 11.017089844000054 + ], + [ + 105.708923340000069, + 11.015075684000067 + ], + [ + 105.705505371000072, + 11.012512207000043 + ], + [ + 105.702270508000083, + 11.009887695000032 + ], + [ + 105.699279785000044, + 11.006530762000068 + ], + [ + 105.696472168000071, + 11.003112793000071 + ], + [ + 105.692077637000068, + 11.00030517600004 + ], + [ + 105.689270020000038, + 10.998474121000072 + ], + [ + 105.684692383000083, + 10.996520996000072 + ], + [ + 105.680114746000072, + 10.994506836000028 + ], + [ + 105.676696777000075, + 10.992675781000059 + ], + [ + 105.673889160000044, + 10.991271973000039 + ], + [ + 105.671081543000071, + 10.989501953000058 + ], + [ + 105.667297363000046, + 10.987487793000071 + ], + [ + 105.663513184000067, + 10.986083984000061 + ], + [ + 105.657897949000073, + 10.984497070000032 + ], + [ + 105.654296875000057, + 10.983703613000046 + ], + [ + 105.650329590000069, + 10.983093262000068 + ], + [ + 105.646301270000038, + 10.982299805000025 + ], + [ + 105.639892578000058, + 10.981079102000024 + ], + [ + 105.635498047000056, + 10.979675293000071 + ], + [ + 105.632324219000054, + 10.978881836000028 + ], + [ + 105.627685547000056, + 10.977478027000075 + ], + [ + 105.624084473000039, + 10.976501465000069 + ], + [ + 105.620300293000071, + 10.975524902000075 + ], + [ + 105.616699219000054, + 10.974670410000044 + ], + [ + 105.611877441000047, + 10.973693848000039 + ], + [ + 105.610290527000075, + 10.977111816000047 + ], + [ + 105.608703613000046, + 10.981689453000058 + ], + [ + 105.610900879000042, + 10.985107422000056 + ], + [ + 105.610717773000033, + 10.989074707000043 + ], + [ + 105.610473633000083, + 10.993103027000075 + ], + [ + 105.607299805000082, + 10.995910645000038 + ], + [ + 105.602478027000075, + 10.997070312000062 + ], + [ + 105.599487305000082, + 10.997314453000058 + ], + [ + 105.594726562000062, + 10.997314453000058 + ], + [ + 105.590515137000068, + 10.999877930000025 + ], + [ + 105.586303711000085, + 11.000671387000068 + ], + [ + 105.583923340000069, + 11.003723145000038 + ], + [ + 105.580688477000081, + 11.00671386700003 + ], + [ + 105.580322266000053, + 11.010314941000047 + ], + [ + 105.583496094000054, + 11.014099121000072 + ], + [ + 105.586120605000076, + 11.018493652000075 + ], + [ + 105.585327148000033, + 11.022705078000058 + ], + [ + 105.588684082000043, + 11.023498535000044 + ], + [ + 105.590515137000068, + 11.026916504000042 + ], + [ + 105.592712402000075, + 11.029479980000076 + ], + [ + 105.595275879000042, + 11.030700684000067 + ], + [ + 105.595703125000057, + 11.034912109000061 + ], + [ + 105.597106934000067, + 11.040283203000058 + ], + [ + 105.600097656000059, + 11.045471191000047 + ], + [ + 105.602294922000056, + 11.049926758000026 + ], + [ + 105.603271484000061, + 11.054077148000033 + ], + [ + 105.603515625000057, + 11.058105469000054 + ], + [ + 105.602111816000047, + 11.061096191000047 + ], + [ + 105.602111816000047, + 11.064270020000038 + ], + [ + 105.603271484000061, + 11.067321777000075 + ], + [ + 105.602294922000056, + 11.070129395000038 + ], + [ + 105.602294922000056, + 11.074096680000025 + ], + [ + 105.604125977000081, + 11.077880859000061 + ], + [ + 105.602905273000033, + 11.082702637000068 + ], + [ + 105.606506348000039, + 11.085876465000069 + ], + [ + 105.607116699000073, + 11.090515137000068 + ], + [ + 105.60968017600004, + 11.094116211000028 + ], + [ + 105.612670898000033, + 11.097106934000067 + ], + [ + 105.614685059000067, + 11.101074219000054 + ], + [ + 105.618713379000042, + 11.104125977000024 + ], + [ + 105.622680664000086, + 11.106872559000067 + ], + [ + 105.626525879000042, + 11.110290527000075 + ], + [ + 105.629089355000076, + 11.114074707000043 + ], + [ + 105.632690430000082, + 11.117126465000069 + ], + [ + 105.635314941000047, + 11.121276855000076 + ], + [ + 105.633300781000059, + 11.12390136700003 + ], + [ + 105.630493164000086, + 11.126281738000046 + ], + [ + 105.628479004000042, + 11.128723145000038 + ], + [ + 105.625671387000068, + 11.130493164000029 + ], + [ + 105.622924805000082, + 11.133300781000059 + ], + [ + 105.619079590000069, + 11.136474609000061 + ], + [ + 105.617126465000069, + 11.141296387000068 + ], + [ + 105.615722656000059, + 11.145324707000043 + ], + [ + 105.614074707000043, + 11.149719238000046 + ], + [ + 105.613281250000057, + 11.154296875000057 + ], + [ + 105.613891602000081, + 11.158874512000068 + ], + [ + 105.613281250000057, + 11.162719727000024 + ], + [ + 105.613891602000081, + 11.166076660000044 + ], + [ + 105.613891602000081, + 11.169311523000033 + ], + [ + 105.613281250000057, + 11.172119141000053 + ], + [ + 105.612670898000033, + 11.177124023000033 + ], + [ + 105.611694336000085, + 11.180908203000058 + ], + [ + 105.610290527000075, + 11.184509277000075 + ], + [ + 105.609130859000061, + 11.188110352000024 + ], + [ + 105.608093262000068, + 11.191528320000032 + ], + [ + 105.607910156000059, + 11.195129395000038 + ], + [ + 105.60772705100004, + 11.19952392600004 + ], + [ + 105.608093262000068, + 11.204284668000071 + ], + [ + 105.610107422000056, + 11.206726074000073 + ], + [ + 105.610717773000033, + 11.209899902000075 + ], + [ + 105.612121582000043, + 11.212890625000057 + ], + [ + 105.613525391000053, + 11.21569824200003 + ], + [ + 105.614685059000067, + 11.219116211000028 + ], + [ + 105.616271973000039, + 11.22351074200003 + ], + [ + 105.618530273000033, + 11.227478027000075 + ], + [ + 105.620300293000071, + 11.230712891000053 + ], + [ + 105.622680664000086, + 11.234130859000061 + ], + [ + 105.624694824000073, + 11.237670898000033 + ], + [ + 105.625122070000089, + 11.242126465000069 + ], + [ + 105.624511719000054, + 11.246704102000024 + ], + [ + 105.624511719000054, + 11.249694824000073 + ], + [ + 105.627075195000089, + 11.251708984000061 + ], + [ + 105.631530762000068, + 11.253295898000033 + ], + [ + 105.634704590000069, + 11.257507324000073 + ], + [ + 105.636291504000042, + 11.263122559000067 + ], + [ + 105.633728027000075, + 11.266113281000059 + ], + [ + 105.635681152000075, + 11.268493652000075 + ], + [ + 105.637329102000081, + 11.271301270000038 + ], + [ + 105.640319824000073, + 11.272888184000067 + ], + [ + 105.645324707000043, + 11.271911621000072 + ], + [ + 105.648071289000086, + 11.268310547000056 + ], + [ + 105.650085449000073, + 11.265686035000044 + ], + [ + 105.653076172000056, + 11.264709473000039 + ], + [ + 105.658081055000082, + 11.265075684000067 + ], + [ + 105.663085937000062, + 11.264892578000058 + ], + [ + 105.667907715000069, + 11.264709473000039 + ], + [ + 105.668884277000075, + 11.269470215000069 + ], + [ + 105.669677734000061, + 11.27429199200003 + ], + [ + 105.668090820000089, + 11.278930664000029 + ], + [ + 105.665283203000058, + 11.284118652000075 + ], + [ + 105.663330078000058, + 11.288330078000058 + ], + [ + 105.661926270000038, + 11.29187011700003 + ], + [ + 105.660705566000047, + 11.297485352000024 + ], + [ + 105.660278320000089, + 11.301513672000056 + ], + [ + 105.659301758000083, + 11.305725098000039 + ], + [ + 105.655517578000058, + 11.309692383000026 + ], + [ + 105.653686523000033, + 11.314086914000029 + ], + [ + 105.653320312000062, + 11.317504883000026 + ], + [ + 105.652282715000069, + 11.320922852000024 + ], + [ + 105.652282715000069, + 11.323913574000073 + ], + [ + 105.652282715000069, + 11.327270508000026 + ], + [ + 105.652709961000085, + 11.330871582000043 + ], + [ + 105.652893066000047, + 11.33428955100004 + ], + [ + 105.653503418000071, + 11.338317871000072 + ], + [ + 105.654296875000057, + 11.343322754000042 + ], + [ + 105.654113770000038, + 11.346923828000058 + ], + [ + 105.653320312000062, + 11.351684570000032 + ], + [ + 105.652893066000047, + 11.356506348000039 + ], + [ + 105.652526855000076, + 11.360473633000026 + ], + [ + 105.652282715000069, + 11.364074707000043 + ], + [ + 105.652282715000069, + 11.368713379000042 + ], + [ + 105.652526855000076, + 11.373107910000044 + ], + [ + 105.652893066000047, + 11.377929687000062 + ], + [ + 105.652099609000061, + 11.382690430000025 + ], + [ + 105.651672363000046, + 11.389099121000072 + ], + [ + 105.651916504000042, + 11.394104004000042 + ], + [ + 105.651916504000042, + 11.397521973000039 + ], + [ + 105.651916504000042, + 11.40069580100004 + ], + [ + 105.652282715000069, + 11.403930664000029 + ], + [ + 105.653320312000062, + 11.408691406000059 + ], + [ + 105.654907227000081, + 11.412719727000024 + ], + [ + 105.655700684000067, + 11.415527344000054 + ], + [ + 105.656127930000082, + 11.419677734000061 + ], + [ + 105.655883789000086, + 11.423095703000058 + ], + [ + 105.656494141000053, + 11.427307129000042 + ], + [ + 105.658325195000089, + 11.431884766000053 + ], + [ + 105.659301758000083, + 11.435302734000061 + ], + [ + 105.659484863000046, + 11.438476562000062 + ], + [ + 105.661071777000075, + 11.441284180000025 + ], + [ + 105.664123535000044, + 11.445129395000038 + ], + [ + 105.666076660000044, + 11.44812011700003 + ], + [ + 105.667724609000061, + 11.451110840000069 + ], + [ + 105.669128418000071, + 11.455322266000053 + ], + [ + 105.669311523000033, + 11.45928955100004 + ], + [ + 105.668884277000075, + 11.462707520000038 + ], + [ + 105.670104980000076, + 11.466308594000054 + ], + [ + 105.667480469000054, + 11.469726562000062 + ], + [ + 105.666076660000044, + 11.47351074200003 + ], + [ + 105.664916992000087, + 11.477294922000056 + ], + [ + 105.664916992000087, + 11.481872559000067 + ], + [ + 105.665527344000054, + 11.486511230000076 + ], + [ + 105.666687012000068, + 11.489074707000043 + ], + [ + 105.668884277000075, + 11.491882324000073 + ], + [ + 105.671691895000038, + 11.494079590000069 + ], + [ + 105.674926758000083, + 11.495117187000062 + ], + [ + 105.677124023000033, + 11.496887207000043 + ], + [ + 105.679687500000057, + 11.498718262000068 + ], + [ + 105.680297852000081, + 11.501892090000069 + ], + [ + 105.682312012000068, + 11.505676270000038 + ], + [ + 105.685729980000076, + 11.50811767600004 + ], + [ + 105.684509277000075, + 11.511718750000057 + ], + [ + 105.682922363000046, + 11.515319824000073 + ], + [ + 105.680725098000039, + 11.519470215000069 + ], + [ + 105.678527832000043, + 11.524108887000068 + ], + [ + 105.679504395000038, + 11.529296875000057 + ], + [ + 105.677307129000042, + 11.533874512000068 + ], + [ + 105.680114746000072, + 11.536926270000038 + ], + [ + 105.68389892600004, + 11.539489746000072 + ], + [ + 105.687927246000072, + 11.54327392600004 + ], + [ + 105.690124512000068, + 11.546325684000067 + ], + [ + 105.690673828000058, + 11.549499512000068 + ], + [ + 105.690124512000068, + 11.552490234000061 + ], + [ + 105.689086914000086, + 11.555297852000024 + ], + [ + 105.689270020000038, + 11.559875488000046 + ], + [ + 105.690917969000054, + 11.562927246000072 + ], + [ + 105.693481445000089, + 11.56530761700003 + ], + [ + 105.696289062000062, + 11.565917969000054 + ], + [ + 105.699707031000059, + 11.567321777000075 + ], + [ + 105.703918457000043, + 11.568908691000047 + ], + [ + 105.708679199000073, + 11.570495605000076 + ], + [ + 105.712707520000038, + 11.571472168000071 + ], + [ + 105.718078613000046, + 11.57312011700003 + ], + [ + 105.721679687000062, + 11.574279785000044 + ], + [ + 105.726074219000054, + 11.575500488000046 + ], + [ + 105.729675293000071, + 11.57647705100004 + ], + [ + 105.733886719000054, + 11.577087402000075 + ], + [ + 105.736877441000047, + 11.577087402000075 + ], + [ + 105.740112305000082, + 11.577087402000075 + ], + [ + 105.743103027000075, + 11.577880859000061 + ], + [ + 105.74249267600004, + 11.581909180000025 + ], + [ + 105.743713379000042, + 11.585510254000042 + ], + [ + 105.747314453000058, + 11.588073730000076 + ], + [ + 105.753295898000033, + 11.586730957000043 + ], + [ + 105.757324219000054, + 11.586303711000028 + ], + [ + 105.760314941000047, + 11.586730957000043 + ], + [ + 105.764099121000072, + 11.587707520000038 + ], + [ + 105.767517090000069, + 11.588500977000024 + ], + [ + 105.770690918000071, + 11.587707520000038 + ], + [ + 105.773681641000053, + 11.587524414000029 + ], + [ + 105.776916504000042, + 11.587890625000057 + ], + [ + 105.780517578000058, + 11.587707520000038 + ], + [ + 105.78350830100004, + 11.587890625000057 + ], + [ + 105.786071777000075, + 11.589111328000058 + ], + [ + 105.788330078000058, + 11.591125488000046 + ], + [ + 105.790710449000073, + 11.592895508000026 + ], + [ + 105.79327392600004, + 11.595275879000042 + ], + [ + 105.796691895000038, + 11.597106934000067 + ], + [ + 105.799926758000083, + 11.597900391000053 + ], + [ + 105.805480957000043, + 11.59851074200003 + ], + [ + 105.809509277000075, + 11.599487305000025 + ], + [ + 105.810913086000085, + 11.595092773000033 + ], + [ + 105.811706543000071, + 11.589111328000058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 3.0394622526099999, + "Shape_Area": 0.28883067145199998, + "ADM1_EN": "Takeo", + "ADM1_PCODE": "KH21", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 104.801330566000047, + 11.354309082000043 + ], + [ + 104.804870605000076, + 11.352478027000075 + ], + [ + 104.808105469000054, + 11.352722168000071 + ], + [ + 104.812072754000042, + 11.350280762000068 + ], + [ + 104.815490723000039, + 11.34851074200003 + ], + [ + 104.818481445000089, + 11.347900391000053 + ], + [ + 104.821716309000067, + 11.346313477000024 + ], + [ + 104.826293945000089, + 11.345520020000038 + ], + [ + 104.830505371000072, + 11.346923828000058 + ], + [ + 104.832092285000044, + 11.343688965000069 + ], + [ + 104.834716797000056, + 11.342285156000059 + ], + [ + 104.838500977000081, + 11.34210205100004 + ], + [ + 104.843505859000061, + 11.342895508000026 + ], + [ + 104.848510742000087, + 11.343078613000046 + ], + [ + 104.852478027000075, + 11.341674805000025 + ], + [ + 104.855712891000053, + 11.343505859000061 + ], + [ + 104.857910156000059, + 11.346313477000024 + ], + [ + 104.862487793000071, + 11.349121094000054 + ], + [ + 104.865295410000044, + 11.351928711000028 + ], + [ + 104.869079590000069, + 11.351074219000054 + ], + [ + 104.873291016000053, + 11.351074219000054 + ], + [ + 104.875915527000075, + 11.348083496000072 + ], + [ + 104.879882812000062, + 11.34851074200003 + ], + [ + 104.883300781000059, + 11.348876953000058 + ], + [ + 104.887084961000085, + 11.348327637000068 + ], + [ + 104.890502930000082, + 11.349304199000073 + ], + [ + 104.894714355000076, + 11.349304199000073 + ], + [ + 104.896728516000053, + 11.347106934000067 + ], + [ + 104.900512695000089, + 11.345092773000033 + ], + [ + 104.903320312000062, + 11.342529297000056 + ], + [ + 104.906311035000044, + 11.342285156000059 + ], + [ + 104.909484863000046, + 11.34210205100004 + ], + [ + 104.913330078000058, + 11.340087891000053 + ], + [ + 104.916076660000044, + 11.337097168000071 + ], + [ + 104.918884277000075, + 11.333679199000073 + ], + [ + 104.920898437000062, + 11.329528809000067 + ], + [ + 104.925292969000054, + 11.327270508000026 + ], + [ + 104.929870605000076, + 11.327880859000061 + ], + [ + 104.934692383000083, + 11.330505371000072 + ], + [ + 104.938110352000081, + 11.328125 + ], + [ + 104.939270020000038, + 11.32507324200003 + ], + [ + 104.939514160000044, + 11.321472168000071 + ], + [ + 104.939697266000053, + 11.31530761700003 + ], + [ + 104.939880371000072, + 11.307128906000059 + ], + [ + 104.939697266000053, + 11.302307129000042 + ], + [ + 104.939514160000044, + 11.298522949000073 + ], + [ + 104.938476562000062, + 11.294311523000033 + ], + [ + 104.937072754000042, + 11.28991699200003 + ], + [ + 104.936096191000047, + 11.287109375000057 + ], + [ + 104.934326172000056, + 11.283691406000059 + ], + [ + 104.933105469000054, + 11.280883789000029 + ], + [ + 104.929077148000033, + 11.274108887000068 + ], + [ + 104.92608642600004, + 11.271484375000057 + ], + [ + 104.927307129000042, + 11.268310547000056 + ], + [ + 104.928527832000043, + 11.26452636700003 + ], + [ + 104.929870605000076, + 11.261108398000033 + ], + [ + 104.930908203000058, + 11.257324219000054 + ], + [ + 104.933288574000073, + 11.251892090000069 + ], + [ + 104.935913086000085, + 11.247314453000058 + ], + [ + 104.938903809000067, + 11.243713379000042 + ], + [ + 104.94171142600004, + 11.241271973000039 + ], + [ + 104.945129395000038, + 11.239685059000067 + ], + [ + 104.948730469000054, + 11.238281250000057 + ], + [ + 104.952087402000075, + 11.236877441000047 + ], + [ + 104.955078125000057, + 11.235473633000026 + ], + [ + 104.958312988000046, + 11.233886719000054 + ], + [ + 104.962707520000038, + 11.232299805000025 + ], + [ + 104.966308594000054, + 11.229309082000043 + ], + [ + 104.969909668000071, + 11.227294922000056 + ], + [ + 104.974121094000054, + 11.225097656000059 + ], + [ + 104.977111816000047, + 11.223327637000068 + ], + [ + 104.980529785000044, + 11.220520020000038 + ], + [ + 104.981323242000087, + 11.215881348000039 + ], + [ + 104.982482910000044, + 11.212280273000033 + ], + [ + 104.983276367000087, + 11.209472656000059 + ], + [ + 104.984497070000089, + 11.205871582000043 + ], + [ + 104.985290527000075, + 11.203125 + ], + [ + 104.984497070000089, + 11.199096680000025 + ], + [ + 104.983886719000054, + 11.196289062000062 + ], + [ + 104.983276367000087, + 11.193298340000069 + ], + [ + 104.982299805000082, + 11.189514160000044 + ], + [ + 104.980285645000038, + 11.183105469000054 + ], + [ + 104.982299805000082, + 11.179504395000038 + ], + [ + 104.984313965000069, + 11.176879883000026 + ], + [ + 104.986328125000057, + 11.174072266000053 + ], + [ + 104.989074707000043, + 11.173278809000067 + ], + [ + 104.992309570000089, + 11.172912598000039 + ], + [ + 104.995300293000071, + 11.17272949200003 + ], + [ + 104.999328613000046, + 11.172912598000039 + ], + [ + 105.003906250000057, + 11.172912598000039 + ], + [ + 105.019287109000061, + 11.173522949000073 + ], + [ + 105.018920898000033, + 11.169128418000071 + ], + [ + 105.016296387000068, + 11.165893555000025 + ], + [ + 105.013488770000038, + 11.162109375000057 + ], + [ + 105.017272949000073, + 11.163085937000062 + ], + [ + 105.021484375000057, + 11.163513184000067 + ], + [ + 105.026306152000075, + 11.161926270000038 + ], + [ + 105.02569580100004, + 11.158874512000068 + ], + [ + 105.022888184000067, + 11.157897949000073 + ], + [ + 105.020080566000047, + 11.155883789000029 + ], + [ + 105.019897461000085, + 11.152709961000028 + ], + [ + 105.020324707000043, + 11.148681641000053 + ], + [ + 105.018920898000033, + 11.144714355000076 + ], + [ + 105.018676758000083, + 11.139892578000058 + ], + [ + 105.016723633000083, + 11.135314941000047 + ], + [ + 105.018493652000075, + 11.132080078000058 + ], + [ + 105.019104004000042, + 11.126708984000061 + ], + [ + 105.016113281000059, + 11.124328613000046 + ], + [ + 105.016906738000046, + 11.120727539000029 + ], + [ + 105.018493652000075, + 11.11608886700003 + ], + [ + 105.017517090000069, + 11.111694336000028 + ], + [ + 105.017089844000054, + 11.10772705100004 + ], + [ + 105.019104004000042, + 11.104919434000067 + ], + [ + 105.01788330100004, + 11.101684570000032 + ], + [ + 105.016723633000083, + 11.098327637000068 + ], + [ + 105.012512207000043, + 11.095703125000057 + ], + [ + 105.010681152000075, + 11.090087891000053 + ], + [ + 105.010681152000075, + 11.085327148000033 + ], + [ + 105.008483887000068, + 11.081726074000073 + ], + [ + 105.006713867000087, + 11.077697754000042 + ], + [ + 105.006286621000072, + 11.073486328000058 + ], + [ + 105.004699707000043, + 11.069702148000033 + ], + [ + 105.003112793000071, + 11.06671142600004 + ], + [ + 105.002685547000056, + 11.063293457000043 + ], + [ + 105.002319336000085, + 11.060302734000061 + ], + [ + 105.00030517600004, + 11.057312012000068 + ], + [ + 104.996276855000076, + 11.055908203000058 + ], + [ + 104.998107910000044, + 11.052307129000042 + ], + [ + 104.998718262000068, + 11.049316406000059 + ], + [ + 104.996704102000081, + 11.045715332000043 + ], + [ + 104.994689941000047, + 11.042114258000026 + ], + [ + 104.992919922000056, + 11.038513184000067 + ], + [ + 104.993103027000075, + 11.035522461000028 + ], + [ + 104.995727539000086, + 11.032287598000039 + ], + [ + 104.997924805000082, + 11.029296875000057 + ], + [ + 104.997314453000058, + 11.026123047000056 + ], + [ + 104.995910645000038, + 11.022521973000039 + ], + [ + 104.994506836000085, + 11.018310547000056 + ], + [ + 104.993713379000042, + 11.014709473000039 + ], + [ + 104.99249267600004, + 11.011291504000042 + ], + [ + 104.990905762000068, + 11.007690430000025 + ], + [ + 104.991271973000039, + 11.004699707000043 + ], + [ + 104.99249267600004, + 11.001708984000061 + ], + [ + 104.993713379000042, + 10.998291016000053 + ], + [ + 104.998901367000087, + 10.998107910000044 + ], + [ + 105.004089355000076, + 10.995910645000038 + ], + [ + 105.008728027000075, + 10.995117187000062 + ], + [ + 105.011718750000057, + 10.994506836000028 + ], + [ + 105.015075684000067, + 10.993530273000033 + ], + [ + 105.018676758000083, + 10.992675781000059 + ], + [ + 105.023315430000082, + 10.992126465000069 + ], + [ + 105.028686523000033, + 10.991699219000054 + ], + [ + 105.031127930000082, + 10.988708496000072 + ], + [ + 105.031494141000053, + 10.98468017600004 + ], + [ + 105.031677246000072, + 10.980895996000072 + ], + [ + 105.032104492000087, + 10.976318359000061 + ], + [ + 105.032104492000087, + 10.972106934000067 + ], + [ + 105.031677246000072, + 10.967712402000075 + ], + [ + 105.031311035000044, + 10.964721680000025 + ], + [ + 105.031494141000053, + 10.960510254000042 + ], + [ + 105.032897949000073, + 10.956909180000025 + ], + [ + 105.034118652000075, + 10.954284668000071 + ], + [ + 105.035888672000056, + 10.951110840000069 + ], + [ + 105.037475586000085, + 10.947875977000024 + ], + [ + 105.038085937000062, + 10.944519043000071 + ], + [ + 105.038696289000086, + 10.940490723000039 + ], + [ + 105.039123535000044, + 10.935485840000069 + ], + [ + 105.040893555000082, + 10.932128906000059 + ], + [ + 105.042480469000054, + 10.928100586000028 + ], + [ + 105.04132080100004, + 10.92468261700003 + ], + [ + 105.039489746000072, + 10.921691895000038 + ], + [ + 105.037475586000085, + 10.91827392600004 + ], + [ + 105.035522461000085, + 10.914306641000053 + ], + [ + 105.03350830100004, + 10.910705566000047 + ], + [ + 105.032897949000073, + 10.905700684000067 + ], + [ + 105.034729004000042, + 10.901672363000046 + ], + [ + 105.036315918000071, + 10.897705078000058 + ], + [ + 105.033691406000059, + 10.894287109000061 + ], + [ + 105.030517578000058, + 10.89288330100004 + ], + [ + 105.030273437000062, + 10.888916016000053 + ], + [ + 105.030883789000086, + 10.886108398000033 + ], + [ + 105.032714844000054, + 10.879272461000028 + ], + [ + 105.034301758000083, + 10.873291016000053 + ], + [ + 105.036071777000075, + 10.866882324000073 + ], + [ + 105.038085937000062, + 10.862915039000029 + ], + [ + 105.040283203000058, + 10.858093262000068 + ], + [ + 105.041687012000068, + 10.855529785000044 + ], + [ + 105.043090820000089, + 10.852478027000075 + ], + [ + 105.044494629000042, + 10.849670410000044 + ], + [ + 105.046325684000067, + 10.845520020000038 + ], + [ + 105.048278809000067, + 10.841125488000046 + ], + [ + 105.049682617000087, + 10.837890625000057 + ], + [ + 105.052124023000033, + 10.833129883000026 + ], + [ + 105.053283691000047, + 10.830078125000057 + ], + [ + 105.054870605000076, + 10.826721191000047 + ], + [ + 105.056518555000082, + 10.823303223000039 + ], + [ + 105.058288574000073, + 10.820129395000038 + ], + [ + 105.058471680000082, + 10.814880371000072 + ], + [ + 105.058288574000073, + 10.810119629000042 + ], + [ + 105.057495117000087, + 10.806091309000067 + ], + [ + 105.057128906000059, + 10.801879883000026 + ], + [ + 105.060485840000069, + 10.79968261700003 + ], + [ + 105.062072754000042, + 10.796508789000029 + ], + [ + 105.0625, + 10.793090820000032 + ], + [ + 105.062927246000072, + 10.78991699200003 + ], + [ + 105.063293457000043, + 10.786071777000075 + ], + [ + 105.064514160000044, + 10.78210449200003 + ], + [ + 105.068298340000069, + 10.779479980000076 + ], + [ + 105.071105957000043, + 10.778686523000033 + ], + [ + 105.074279785000044, + 10.777526855000076 + ], + [ + 105.077514648000033, + 10.775085449000073 + ], + [ + 105.079895020000038, + 10.772521973000039 + ], + [ + 105.082702637000068, + 10.769104004000042 + ], + [ + 105.085327148000033, + 10.765686035000044 + ], + [ + 105.087280273000033, + 10.762695312000062 + ], + [ + 105.089294434000067, + 10.759887695000032 + ], + [ + 105.091918945000089, + 10.756530762000068 + ], + [ + 105.093078613000046, + 10.752502441000047 + ], + [ + 105.097106934000067, + 10.720275879000042 + ], + [ + 105.093688965000069, + 10.718078613000046 + ], + [ + 105.090881348000039, + 10.716491699000073 + ], + [ + 105.088317871000072, + 10.714904785000044 + ], + [ + 105.085083008000083, + 10.713317871000072 + ], + [ + 105.082092285000044, + 10.711730957000043 + ], + [ + 105.078918457000043, + 10.709899902000075 + ], + [ + 105.075683594000054, + 10.70788574200003 + ], + [ + 105.072326660000044, + 10.705871582000043 + ], + [ + 105.068725586000085, + 10.704284668000071 + ], + [ + 105.065673828000058, + 10.702514648000033 + ], + [ + 105.062683105000076, + 10.700927734000061 + ], + [ + 105.059082031000059, + 10.698913574000073 + ], + [ + 105.055114746000072, + 10.696472168000071 + ], + [ + 104.994689941000047, + 10.662292480000076 + ], + [ + 104.988708496000072, + 10.657714844000054 + ], + [ + 104.983703613000046, + 10.654724121000072 + ], + [ + 104.979492187000062, + 10.652282715000069 + ], + [ + 104.97491455100004, + 10.64929199200003 + ], + [ + 104.970520020000038, + 10.646484375000057 + ], + [ + 104.966674805000082, + 10.644287109000061 + ], + [ + 104.963500977000081, + 10.642272949000073 + ], + [ + 104.960510254000042, + 10.640319824000073 + ], + [ + 104.957702637000068, + 10.638488770000038 + ], + [ + 104.954284668000071, + 10.636901855000076 + ], + [ + 104.951110840000069, + 10.631103516000053 + ], + [ + 104.948486328000058, + 10.628295898000033 + ], + [ + 104.945495605000076, + 10.624877930000025 + ], + [ + 104.942321777000075, + 10.620910645000038 + ], + [ + 104.939697266000053, + 10.617919922000056 + ], + [ + 104.937683105000076, + 10.615478516000053 + ], + [ + 104.935302734000061, + 10.613708496000072 + ], + [ + 104.934082031000059, + 10.610900879000042 + ], + [ + 104.932312012000068, + 10.607299805000025 + ], + [ + 104.929870605000076, + 10.603271484000061 + ], + [ + 104.927917480000076, + 10.599670410000044 + ], + [ + 104.925476074000073, + 10.595886230000076 + ], + [ + 104.923278809000067, + 10.592285156000059 + ], + [ + 104.920471191000047, + 10.587280273000033 + ], + [ + 104.91827392600004, + 10.583312988000046 + ], + [ + 104.91632080100004, + 10.579895020000038 + ], + [ + 104.913696289000086, + 10.575683594000054 + ], + [ + 104.910705566000047, + 10.570678711000028 + ], + [ + 104.908691406000059, + 10.56671142600004 + ], + [ + 104.904479980000076, + 10.560119629000042 + ], + [ + 104.901916504000042, + 10.555725098000039 + ], + [ + 104.899719238000046, + 10.552124023000033 + ], + [ + 104.897521973000039, + 10.547912598000039 + ], + [ + 104.893493652000075, + 10.543884277000075 + ], + [ + 104.889709473000039, + 10.540527344000054 + ], + [ + 104.886901855000076, + 10.538085937000062 + ], + [ + 104.883728027000075, + 10.535278320000032 + ], + [ + 104.880676270000038, + 10.532287598000039 + ], + [ + 104.876892090000069, + 10.528930664000029 + ], + [ + 104.873718262000068, + 10.526306152000075 + ], + [ + 104.871276855000076, + 10.52429199200003 + ], + [ + 104.869079590000069, + 10.522277832000043 + ], + [ + 104.863281250000057, + 10.521728516000053 + ], + [ + 104.851074219000054, + 10.521301270000038 + ], + [ + 104.834899902000075, + 10.520690918000071 + ], + [ + 104.827514648000033, + 10.521301270000038 + ], + [ + 104.811889648000033, + 10.519714355000076 + ], + [ + 104.800720215000069, + 10.519287109000061 + ], + [ + 104.788085937000062, + 10.518920898000033 + ], + [ + 104.772094727000081, + 10.518127441000047 + ], + [ + 104.761718750000057, + 10.518310547000056 + ], + [ + 104.753723145000038, + 10.51788330100004 + ], + [ + 104.749328613000046, + 10.519104004000042 + ], + [ + 104.746520996000072, + 10.520080566000047 + ], + [ + 104.714477539000086, + 10.53210449200003 + ], + [ + 104.717895508000083, + 10.534301758000026 + ], + [ + 104.718505859000061, + 10.537292480000076 + ], + [ + 104.716491699000073, + 10.539489746000072 + ], + [ + 104.714111328000058, + 10.541503906000059 + ], + [ + 104.713317871000072, + 10.545715332000043 + ], + [ + 104.712097168000071, + 10.550903320000032 + ], + [ + 104.712097168000071, + 10.555480957000043 + ], + [ + 104.711486816000047, + 10.55889892600004 + ], + [ + 104.711730957000043, + 10.563110352000024 + ], + [ + 104.711914062000062, + 10.566528320000032 + ], + [ + 104.712524414000086, + 10.570129395000038 + ], + [ + 104.712890625000057, + 10.575317383000026 + ], + [ + 104.711486816000047, + 10.580688477000024 + ], + [ + 104.707275391000053, + 10.584899902000075 + ], + [ + 104.706481934000067, + 10.589111328000058 + ], + [ + 104.706726074000073, + 10.592529297000056 + ], + [ + 104.707275391000053, + 10.596496582000043 + ], + [ + 104.709472656000059, + 10.600891113000046 + ], + [ + 104.711303711000085, + 10.604675293000071 + ], + [ + 104.713500977000081, + 10.609497070000032 + ], + [ + 104.711486816000047, + 10.612304687000062 + ], + [ + 104.710510254000042, + 10.61608886700003 + ], + [ + 104.707702637000068, + 10.619079590000069 + ], + [ + 104.704895020000038, + 10.619689941000047 + ], + [ + 104.699890137000068, + 10.619873047000056 + ], + [ + 104.695678711000085, + 10.620300293000071 + ], + [ + 104.692321777000075, + 10.620483398000033 + ], + [ + 104.689270020000038, + 10.620727539000029 + ], + [ + 104.685729980000076, + 10.620910645000038 + ], + [ + 104.681274414000086, + 10.621093750000057 + ], + [ + 104.677307129000042, + 10.621276855000076 + ], + [ + 104.673889160000044, + 10.621276855000076 + ], + [ + 104.674926758000083, + 10.625122070000032 + ], + [ + 104.675476074000073, + 10.629699707000043 + ], + [ + 104.676513672000056, + 10.63311767600004 + ], + [ + 104.676879883000083, + 10.636108398000033 + ], + [ + 104.676330566000047, + 10.641296387000068 + ], + [ + 104.675476074000073, + 10.645690918000071 + ], + [ + 104.674926758000083, + 10.648498535000044 + ], + [ + 104.673706055000082, + 10.651916504000042 + ], + [ + 104.674316406000059, + 10.655517578000058 + ], + [ + 104.675109863000046, + 10.659729004000042 + ], + [ + 104.674682617000087, + 10.663696289000029 + ], + [ + 104.674316406000059, + 10.667297363000046 + ], + [ + 104.673889160000044, + 10.670898437000062 + ], + [ + 104.674316406000059, + 10.67468261700003 + ], + [ + 104.674499512000068, + 10.678100586000028 + ], + [ + 104.673889160000044, + 10.680908203000058 + ], + [ + 104.674499512000068, + 10.684692383000026 + ], + [ + 104.673889160000044, + 10.688903809000067 + ], + [ + 104.672119141000053, + 10.691101074000073 + ], + [ + 104.671081543000071, + 10.695495605000076 + ], + [ + 104.673278809000067, + 10.700500488000046 + ], + [ + 104.676513672000056, + 10.703674316000047 + ], + [ + 104.680480957000043, + 10.706298828000058 + ], + [ + 104.683105469000054, + 10.710510254000042 + ], + [ + 104.684509277000075, + 10.715087891000053 + ], + [ + 104.686889648000033, + 10.718322754000042 + ], + [ + 104.687683105000076, + 10.721313477000024 + ], + [ + 104.691101074000073, + 10.724670410000044 + ], + [ + 104.694091797000056, + 10.728271484000061 + ], + [ + 104.695922852000081, + 10.731079102000024 + ], + [ + 104.698303223000039, + 10.734497070000032 + ], + [ + 104.69952392600004, + 10.738708496000072 + ], + [ + 104.702087402000075, + 10.74108886700003 + ], + [ + 104.700073242000087, + 10.744079590000069 + ], + [ + 104.699707031000059, + 10.747070312000062 + ], + [ + 104.699890137000068, + 10.750488281000059 + ], + [ + 104.701293945000089, + 10.755310059000067 + ], + [ + 104.702697754000042, + 10.758911133000026 + ], + [ + 104.702697754000042, + 10.762084961000028 + ], + [ + 104.703918457000043, + 10.764709473000039 + ], + [ + 104.707519531000059, + 10.767517090000069 + ], + [ + 104.711120605000076, + 10.770507812000062 + ], + [ + 104.714294434000067, + 10.772705078000058 + ], + [ + 104.718872070000089, + 10.775085449000073 + ], + [ + 104.724304199000073, + 10.777282715000069 + ], + [ + 104.729125977000081, + 10.780273437000062 + ], + [ + 104.725280762000068, + 10.78210449200003 + ], + [ + 104.723083496000072, + 10.784301758000026 + ], + [ + 104.722290039000086, + 10.788330078000058 + ], + [ + 104.719299316000047, + 10.791503906000059 + ], + [ + 104.716674805000082, + 10.79327392600004 + ], + [ + 104.715087891000053, + 10.796508789000029 + ], + [ + 104.712097168000071, + 10.799072266000053 + ], + [ + 104.710510254000042, + 10.801879883000026 + ], + [ + 104.708312988000046, + 10.804504395000038 + ], + [ + 104.706115723000039, + 10.806518555000025 + ], + [ + 104.706726074000073, + 10.809509277000075 + ], + [ + 104.705078125000057, + 10.813293457000043 + ], + [ + 104.705322266000053, + 10.816528320000032 + ], + [ + 104.705322266000053, + 10.820312500000057 + ], + [ + 104.705078125000057, + 10.824096680000025 + ], + [ + 104.704528809000067, + 10.828308105000076 + ], + [ + 104.704528809000067, + 10.832092285000044 + ], + [ + 104.706726074000073, + 10.835083008000026 + ], + [ + 104.705505371000072, + 10.839477539000029 + ], + [ + 104.703308105000076, + 10.845275879000042 + ], + [ + 104.702087402000075, + 10.848693848000039 + ], + [ + 104.700927734000061, + 10.851318359000061 + ], + [ + 104.699279785000044, + 10.854309082000043 + ], + [ + 104.698303223000039, + 10.858703613000046 + ], + [ + 104.697082520000038, + 10.861511230000076 + ], + [ + 104.691894531000059, + 10.872924805000025 + ], + [ + 104.689514160000044, + 10.874511719000054 + ], + [ + 104.686889648000033, + 10.880310059000067 + ], + [ + 104.677917480000076, + 10.893676758000026 + ], + [ + 104.674316406000059, + 10.894104004000042 + ], + [ + 104.674316406000059, + 10.899902344000054 + ], + [ + 104.66827392600004, + 10.901123047000056 + ], + [ + 104.658691406000059, + 10.906127930000025 + ], + [ + 104.654724121000072, + 10.90710449200003 + ], + [ + 104.650878906000059, + 10.90710449200003 + ], + [ + 104.645507812000062, + 10.906494141000053 + ], + [ + 104.641906738000046, + 10.906311035000044 + ], + [ + 104.634704590000069, + 10.905090332000043 + ], + [ + 104.630920410000044, + 10.904479980000076 + ], + [ + 104.624511719000054, + 10.901489258000026 + ], + [ + 104.618286133000083, + 10.902282715000069 + ], + [ + 104.597900391000053, + 10.892089844000054 + ], + [ + 104.585327148000033, + 10.886291504000042 + ], + [ + 104.580322266000053, + 10.886291504000042 + ], + [ + 104.57452392600004, + 10.886901855000076 + ], + [ + 104.562316895000038, + 10.887512207000043 + ], + [ + 104.559326172000056, + 10.887878418000071 + ], + [ + 104.554077148000033, + 10.887084961000028 + ], + [ + 104.549926758000083, + 10.886474609000061 + ], + [ + 104.546508789000086, + 10.886291504000042 + ], + [ + 104.535888672000056, + 10.887084961000028 + ], + [ + 104.521484375000057, + 10.893920898000033 + ], + [ + 104.527282715000069, + 10.905273437000062 + ], + [ + 104.541076660000044, + 10.930297852000024 + ], + [ + 104.540893555000082, + 10.936523437000062 + ], + [ + 104.539672852000081, + 10.947509766000053 + ], + [ + 104.539672852000081, + 10.952087402000075 + ], + [ + 104.540710449000073, + 10.958496094000054 + ], + [ + 104.54132080100004, + 10.966125488000046 + ], + [ + 104.539672852000081, + 10.969726562000062 + ], + [ + 104.539672852000081, + 10.975280762000068 + ], + [ + 104.538879395000038, + 10.981079102000024 + ], + [ + 104.537902832000043, + 10.987121582000043 + ], + [ + 104.536071777000075, + 10.990295410000044 + ], + [ + 104.534484863000046, + 10.993286133000026 + ], + [ + 104.534118652000075, + 10.998291016000053 + ], + [ + 104.532470703000058, + 11.003295898000033 + ], + [ + 104.530090332000043, + 11.007324219000054 + ], + [ + 104.529296875000057, + 11.01007080100004 + ], + [ + 104.527893066000047, + 11.013305664000029 + ], + [ + 104.52569580100004, + 11.016723633000026 + ], + [ + 104.524108887000068, + 11.019470215000069 + ], + [ + 104.523315430000082, + 11.023681641000053 + ], + [ + 104.521484375000057, + 11.026672363000046 + ], + [ + 104.518676758000083, + 11.030700684000067 + ], + [ + 104.51593017600004, + 11.034912109000061 + ], + [ + 104.513671875000057, + 11.038513184000067 + ], + [ + 104.510925293000071, + 11.042724609000061 + ], + [ + 104.507324219000054, + 11.045715332000043 + ], + [ + 104.504272461000085, + 11.05108642600004 + ], + [ + 104.499511719000054, + 11.058288574000073 + ], + [ + 104.496276855000076, + 11.059326172000056 + ], + [ + 104.486877441000047, + 11.059692383000026 + ], + [ + 104.487670898000033, + 11.070922852000024 + ], + [ + 104.468505859000061, + 11.056884766000053 + ], + [ + 104.461120605000076, + 11.063720703000058 + ], + [ + 104.455078125000057, + 11.057922363000046 + ], + [ + 104.455078125000057, + 11.068908691000047 + ], + [ + 104.451293945000032, + 11.071289062000062 + ], + [ + 104.447509766000053, + 11.072509766000053 + ], + [ + 104.444091797000056, + 11.07312011700003 + ], + [ + 104.441284180000082, + 11.073913574000073 + ], + [ + 104.437927246000072, + 11.075927734000061 + ], + [ + 104.433471680000082, + 11.080322266000053 + ], + [ + 104.428894043000071, + 11.081726074000073 + ], + [ + 104.425109863000046, + 11.082275391000053 + ], + [ + 104.421691895000038, + 11.082275391000053 + ], + [ + 104.417480469000054, + 11.081481934000067 + ], + [ + 104.413513184000067, + 11.079711914000029 + ], + [ + 104.411071777000075, + 11.077880859000061 + ], + [ + 104.410278320000032, + 11.111083984000061 + ], + [ + 104.410522461000085, + 11.136901855000076 + ], + [ + 104.413085937000062, + 11.134887695000032 + ], + [ + 104.417297363000046, + 11.132507324000073 + ], + [ + 104.421875, + 11.132080078000058 + ], + [ + 104.425109863000046, + 11.130493164000029 + ], + [ + 104.428527832000043, + 11.128479004000042 + ], + [ + 104.432312012000068, + 11.128479004000042 + ], + [ + 104.436279297000056, + 11.130920410000044 + ], + [ + 104.439697266000053, + 11.131896973000039 + ], + [ + 104.442871094000054, + 11.132873535000044 + ], + [ + 104.445678711000085, + 11.130493164000029 + ], + [ + 104.44952392600004, + 11.128479004000042 + ], + [ + 104.454284668000071, + 11.126892090000069 + ], + [ + 104.458129883000083, + 11.124877930000025 + ], + [ + 104.461730957000043, + 11.124084473000039 + ], + [ + 104.464721680000082, + 11.124877930000025 + ], + [ + 104.467285156000059, + 11.126098633000026 + ], + [ + 104.470703125000057, + 11.124877930000025 + ], + [ + 104.474487305000082, + 11.124511719000054 + ], + [ + 104.478698730000076, + 11.124511719000054 + ], + [ + 104.481872559000067, + 11.124084473000039 + ], + [ + 104.485290527000075, + 11.123718262000068 + ], + [ + 104.490112305000082, + 11.124084473000039 + ], + [ + 104.495483398000033, + 11.124694824000073 + ], + [ + 104.500488281000059, + 11.126098633000026 + ], + [ + 104.503112793000071, + 11.127685547000056 + ], + [ + 104.505920410000044, + 11.129882812000062 + ], + [ + 104.509277344000054, + 11.131530762000068 + ], + [ + 104.512512207000043, + 11.131286621000072 + ], + [ + 104.515502930000082, + 11.129699707000043 + ], + [ + 104.516479492000087, + 11.126098633000026 + ], + [ + 104.518493652000075, + 11.123107910000044 + ], + [ + 104.521484375000057, + 11.119873047000056 + ], + [ + 104.524475098000039, + 11.117919922000056 + ], + [ + 104.526672363000046, + 11.115478516000053 + ], + [ + 104.529296875000057, + 11.112487793000071 + ], + [ + 104.533874512000068, + 11.110900879000042 + ], + [ + 104.537902832000043, + 11.107482910000044 + ], + [ + 104.542297363000046, + 11.105285645000038 + ], + [ + 104.546081543000071, + 11.104675293000071 + ], + [ + 104.550109863000046, + 11.103698730000076 + ], + [ + 104.554687500000057, + 11.101684570000032 + ], + [ + 104.558288574000073, + 11.100097656000059 + ], + [ + 104.561523437000062, + 11.100524902000075 + ], + [ + 104.564697266000053, + 11.098876953000058 + ], + [ + 104.568115234000061, + 11.098327637000068 + ], + [ + 104.572082520000038, + 11.097900391000053 + ], + [ + 104.575500488000046, + 11.097290039000029 + ], + [ + 104.578674316000047, + 11.096313477000024 + ], + [ + 104.581298828000058, + 11.095092773000033 + ], + [ + 104.585083008000083, + 11.093505859000061 + ], + [ + 104.588684082000043, + 11.091308594000054 + ], + [ + 104.59210205100004, + 11.089477539000029 + ], + [ + 104.596679687000062, + 11.087890625000057 + ], + [ + 104.602905273000033, + 11.086914062000062 + ], + [ + 104.606506348000039, + 11.085510254000042 + ], + [ + 104.611694336000085, + 11.085693359000061 + ], + [ + 104.615722656000059, + 11.085083008000026 + ], + [ + 104.618530273000033, + 11.08428955100004 + ], + [ + 104.622497559000067, + 11.08428955100004 + ], + [ + 104.627319336000085, + 11.082275391000053 + ], + [ + 104.629516602000081, + 11.079895020000038 + ], + [ + 104.632690430000082, + 11.078674316000047 + ], + [ + 104.635681152000075, + 11.078125 + ], + [ + 104.639282227000081, + 11.079284668000071 + ], + [ + 104.641296387000068, + 11.082702637000068 + ], + [ + 104.644470215000069, + 11.084716797000056 + ], + [ + 104.648071289000086, + 11.083312988000046 + ], + [ + 104.651123047000056, + 11.083679199000073 + ], + [ + 104.653930664000086, + 11.083129883000026 + ], + [ + 104.657714844000054, + 11.084472656000059 + ], + [ + 104.663513184000067, + 11.085510254000042 + ], + [ + 104.66827392600004, + 11.086120605000076 + ], + [ + 104.671325684000067, + 11.087280273000033 + ], + [ + 104.674682617000087, + 11.090270996000072 + ], + [ + 104.678283691000047, + 11.091491699000073 + ], + [ + 104.682312012000068, + 11.09069824200003 + ], + [ + 104.686279297000056, + 11.087524414000029 + ], + [ + 104.685485840000069, + 11.096923828000058 + ], + [ + 104.686096191000047, + 11.10772705100004 + ], + [ + 104.686706543000071, + 11.115722656000059 + ], + [ + 104.687927246000072, + 11.123474121000072 + ], + [ + 104.687316895000038, + 11.127685547000056 + ], + [ + 104.686889648000033, + 11.131286621000072 + ], + [ + 104.685485840000069, + 11.142517090000069 + ], + [ + 104.684326172000056, + 11.155883789000029 + ], + [ + 104.684692383000083, + 11.159912109000061 + ], + [ + 104.685302734000061, + 11.166076660000044 + ], + [ + 104.685913086000085, + 11.170898437000062 + ], + [ + 104.689514160000044, + 11.180725098000039 + ], + [ + 104.690124512000068, + 11.183715820000032 + ], + [ + 104.689697266000053, + 11.188476562000062 + ], + [ + 104.691284180000082, + 11.197326660000044 + ], + [ + 104.692687988000046, + 11.206909180000025 + ], + [ + 104.694091797000056, + 11.214477539000029 + ], + [ + 104.695678711000085, + 11.222473145000038 + ], + [ + 104.696899414000086, + 11.228271484000061 + ], + [ + 104.696289062000062, + 11.232910156000059 + ], + [ + 104.698486328000058, + 11.236511230000076 + ], + [ + 104.70147705100004, + 11.241271973000039 + ], + [ + 104.701293945000089, + 11.250671387000068 + ], + [ + 104.702270508000083, + 11.25671386700003 + ], + [ + 104.707275391000053, + 11.283691406000059 + ], + [ + 104.706909180000082, + 11.289306641000053 + ], + [ + 104.706726074000073, + 11.297912598000039 + ], + [ + 104.708679199000073, + 11.306884766000053 + ], + [ + 104.710876465000069, + 11.321289062000062 + ], + [ + 104.712524414000086, + 11.32452392600004 + ], + [ + 104.715087891000053, + 11.327697754000042 + ], + [ + 104.717529297000056, + 11.330688477000024 + ], + [ + 104.719482422000056, + 11.333679199000073 + ], + [ + 104.723693848000039, + 11.339111328000058 + ], + [ + 104.726684570000089, + 11.343078613000046 + ], + [ + 104.729492187000062, + 11.346679687000062 + ], + [ + 104.732482910000044, + 11.34991455100004 + ], + [ + 104.745727539000086, + 11.342285156000059 + ], + [ + 104.749694824000073, + 11.340087891000053 + ], + [ + 104.752502441000047, + 11.338500977000024 + ], + [ + 104.755126953000058, + 11.336914062000062 + ], + [ + 104.758911133000083, + 11.337524414000029 + ], + [ + 104.762329102000081, + 11.339721680000025 + ], + [ + 104.76593017600004, + 11.34210205100004 + ], + [ + 104.769714355000076, + 11.344299316000047 + ], + [ + 104.772705078000058, + 11.346130371000072 + ], + [ + 104.776489258000083, + 11.345886230000076 + ], + [ + 104.779479980000076, + 11.346923828000058 + ], + [ + 104.783691406000059, + 11.34851074200003 + ], + [ + 104.789489746000072, + 11.349670410000044 + ], + [ + 104.793884277000075, + 11.350891113000046 + ], + [ + 104.797119141000053, + 11.353698730000076 + ], + [ + 104.801330566000047, + 11.354309082000043 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Shape_Leng": 3.7604358263900002, + "Shape_Area": 0.40934160906700001, + "ADM1_EN": "Tboung Khmum", + "ADM1_PCODE": "KH25", + "ADM1_REF": null, + "ADM1ALT1EN": null, + "ADM1ALT2EN": null, + "ADM0_EN": "Cambodia", + "ADM0_PCODE": "KH", + "date": "2014\/10\/14", + "validOn": "2018\/10\/04" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 105.641723633000083, + 12.288696289000029 + ], + [ + 105.649108887000068, + 12.286315918000071 + ], + [ + 105.681274414000086, + 12.286499023000033 + ], + [ + 105.685302734000061, + 12.285278320000032 + ], + [ + 105.698486328000058, + 12.281921387000068 + ], + [ + 105.704101562000062, + 12.279907227000024 + ], + [ + 105.721130371000072, + 12.277526855000076 + ], + [ + 105.721130371000072, + 12.274475098000039 + ], + [ + 105.724670410000044, + 12.269470215000069 + ], + [ + 105.730529785000044, + 12.266113281000059 + ], + [ + 105.735473633000083, + 12.263305664000029 + ], + [ + 105.739929199000073, + 12.260498047000056 + ], + [ + 105.745483398000033, + 12.258911133000026 + ], + [ + 105.752319336000085, + 12.258483887000068 + ], + [ + 105.756530762000068, + 12.257873535000044 + ], + [ + 105.76007080100004, + 12.257690430000025 + ], + [ + 105.764892578000058, + 12.257873535000044 + ], + [ + 105.771118164000086, + 12.259887695000032 + ], + [ + 105.775085449000073, + 12.259704590000069 + ], + [ + 105.777893066000047, + 12.259094238000046 + ], + [ + 105.781921387000068, + 12.258728027000075 + ], + [ + 105.787109375000057, + 12.258728027000075 + ], + [ + 105.791687012000068, + 12.258728027000075 + ], + [ + 105.796081543000071, + 12.259094238000046 + ], + [ + 105.80108642600004, + 12.259704590000069 + ], + [ + 105.805725098000039, + 12.259887695000032 + ], + [ + 105.80889892600004, + 12.259887695000032 + ], + [ + 105.812316895000038, + 12.259887695000032 + ], + [ + 105.816894531000059, + 12.259887695000032 + ], + [ + 105.821105957000043, + 12.258911133000026 + ], + [ + 105.824707031000059, + 12.258483887000068 + ], + [ + 105.828491211000085, + 12.25811767600004 + ], + [ + 105.831115723000039, + 12.256896973000039 + ], + [ + 105.831115723000039, + 12.252075195000032 + ], + [ + 105.830688477000081, + 12.247497559000067 + ], + [ + 105.830078125000057, + 12.243530273000033 + ], + [ + 105.831298828000058, + 12.239685059000067 + ], + [ + 105.834106445000089, + 12.236877441000047 + ], + [ + 105.834716797000056, + 12.232910156000059 + ], + [ + 105.837280273000033, + 12.231079102000024 + ], + [ + 105.838073730000076, + 12.227905273000033 + ], + [ + 105.837707520000038, + 12.22491455100004 + ], + [ + 105.836914062000062, + 12.220703125000057 + ], + [ + 105.838317871000072, + 12.216918945000032 + ], + [ + 105.841125488000046, + 12.212524414000029 + ], + [ + 105.842285156000059, + 12.208312988000046 + ], + [ + 105.842529297000056, + 12.204895020000038 + ], + [ + 105.847717285000044, + 12.204711914000029 + ], + [ + 105.851928711000085, + 12.203308105000076 + ], + [ + 105.853881836000085, + 12.205871582000043 + ], + [ + 105.855102539000086, + 12.208923340000069 + ], + [ + 105.859313965000069, + 12.213073730000076 + ], + [ + 105.860717773000033, + 12.219299316000047 + ], + [ + 105.864685059000067, + 12.221923828000058 + ], + [ + 105.867309570000089, + 12.219726562000062 + ], + [ + 105.869506836000085, + 12.217529297000056 + ], + [ + 105.873107910000044, + 12.21569824200003 + ], + [ + 105.877075195000089, + 12.217895508000026 + ], + [ + 105.880310059000067, + 12.215881348000039 + ], + [ + 105.88311767600004, + 12.213073730000076 + ], + [ + 105.886108398000033, + 12.213500977000024 + ], + [ + 105.889709473000039, + 12.212524414000029 + ], + [ + 105.893493652000075, + 12.210876465000069 + ], + [ + 105.897277832000043, + 12.212097168000071 + ], + [ + 105.901123047000056, + 12.213317871000072 + ], + [ + 105.905517578000058, + 12.214721680000025 + ], + [ + 105.909118652000075, + 12.214477539000029 + ], + [ + 105.910095215000069, + 12.218688965000069 + ], + [ + 105.914123535000044, + 12.216491699000073 + ], + [ + 105.915893555000082, + 12.214294434000067 + ], + [ + 105.918701172000056, + 12.215515137000068 + ], + [ + 105.922485352000081, + 12.215881348000039 + ], + [ + 105.926330566000047, + 12.217529297000056 + ], + [ + 105.929870605000076, + 12.220275879000042 + ], + [ + 105.931518555000082, + 12.216491699000073 + ], + [ + 105.933288574000073, + 12.213073730000076 + ], + [ + 105.936706543000071, + 12.214111328000058 + ], + [ + 105.940490723000039, + 12.212524414000029 + ], + [ + 105.942077637000068, + 12.209472656000059 + ], + [ + 105.945129395000038, + 12.207092285000044 + ], + [ + 105.944274902000075, + 12.204101562000062 + ], + [ + 105.944274902000075, + 12.199890137000068 + ], + [ + 105.947509766000053, + 12.197875977000024 + ], + [ + 105.951721191000047, + 12.199096680000025 + ], + [ + 105.954895020000038, + 12.200927734000061 + ], + [ + 105.957275391000053, + 12.197692871000072 + ], + [ + 105.960693359000061, + 12.196289062000062 + ], + [ + 105.966125488000046, + 12.196716309000067 + ], + [ + 105.971923828000058, + 12.196716309000067 + ], + [ + 105.973693848000039, + 12.201293945000032 + ], + [ + 105.979309082000043, + 12.204711914000029 + ], + [ + 105.983276367000087, + 12.203674316000047 + ], + [ + 105.984497070000089, + 12.20007324200003 + ], + [ + 105.986694336000085, + 12.202697754000042 + ], + [ + 105.990112305000082, + 12.202697754000042 + ], + [ + 105.993103027000075, + 12.201904297000056 + ], + [ + 105.994689941000047, + 12.19952392600004 + ], + [ + 105.993103027000075, + 12.197082520000038 + ], + [ + 105.993286133000083, + 12.193908691000047 + ], + [ + 105.993530273000033, + 12.190673828000058 + ], + [ + 105.990478516000053, + 12.190490723000039 + ], + [ + 105.989074707000043, + 12.193725586000028 + ], + [ + 105.985290527000075, + 12.191284180000025 + ], + [ + 105.986511230000076, + 12.188110352000024 + ], + [ + 105.990722656000059, + 12.186523437000062 + ], + [ + 105.993103027000075, + 12.183288574000073 + ], + [ + 105.995910645000038, + 12.185302734000061 + ], + [ + 106.000122070000089, + 12.184509277000075 + ], + [ + 106.004272461000085, + 12.184082031000059 + ], + [ + 106.008911133000083, + 12.182678223000039 + ], + [ + 106.010681152000075, + 12.178894043000071 + ], + [ + 106.007324219000054, + 12.17608642600004 + ], + [ + 106.009521484000061, + 12.172912598000039 + ], + [ + 106.013488770000038, + 12.168884277000075 + ], + [ + 106.013122559000067, + 12.165710449000073 + ], + [ + 106.01593017600004, + 12.163696289000029 + ], + [ + 106.018920898000033, + 12.161682129000042 + ], + [ + 106.018310547000056, + 12.158874512000068 + ], + [ + 106.018310547000056, + 12.155090332000043 + ], + [ + 106.016296387000068, + 12.150085449000073 + ], + [ + 106.017517090000069, + 12.147277832000043 + ], + [ + 106.021484375000057, + 12.149108887000068 + ], + [ + 106.024475098000039, + 12.147277832000043 + ], + [ + 106.027282715000069, + 12.148315430000025 + ], + [ + 106.030090332000043, + 12.147521973000039 + ], + [ + 106.034912109000061, + 12.149719238000046 + ], + [ + 106.039672852000081, + 12.151306152000075 + ], + [ + 106.04132080100004, + 12.154907227000024 + ], + [ + 106.044677734000061, + 12.156311035000044 + ], + [ + 106.045104980000076, + 12.153076172000056 + ], + [ + 106.044921875000057, + 12.149719238000046 + ], + [ + 106.043884277000075, + 12.146118164000029 + ], + [ + 106.048095703000058, + 12.144897461000028 + ], + [ + 106.049926758000083, + 12.139892578000058 + ], + [ + 106.051330566000047, + 12.135681152000075 + ], + [ + 106.055480957000043, + 12.134094238000046 + ], + [ + 106.059082031000059, + 12.131896973000039 + ], + [ + 106.059875488000046, + 12.127929687000062 + ], + [ + 106.059509277000075, + 12.124328613000046 + ], + [ + 106.055908203000058, + 12.123718262000068 + ], + [ + 106.055725098000039, + 12.120483398000033 + ], + [ + 106.059692383000083, + 12.117126465000069 + ], + [ + 106.059326172000056, + 12.112670898000033 + ], + [ + 106.057128906000059, + 12.110107422000056 + ], + [ + 106.053527832000043, + 12.108093262000068 + ], + [ + 106.049682617000087, + 12.106689453000058 + ], + [ + 106.048889160000044, + 12.101928711000028 + ], + [ + 106.046691895000038, + 12.099670410000044 + ], + [ + 106.043518066000047, + 12.100280762000068 + ], + [ + 106.041687012000068, + 12.096679687000062 + ], + [ + 106.043518066000047, + 12.092895508000026 + ], + [ + 106.046325684000067, + 12.091674805000025 + ], + [ + 106.049499512000068, + 12.089477539000029 + ], + [ + 106.046875, + 12.085876465000069 + ], + [ + 106.044921875000057, + 12.082519531000059 + ], + [ + 106.048522949000073, + 12.081115723000039 + ], + [ + 106.051330566000047, + 12.081909180000025 + ], + [ + 106.053100586000085, + 12.085083008000026 + ], + [ + 106.057128906000059, + 12.086486816000047 + ], + [ + 106.059692383000083, + 12.085327148000033 + ], + [ + 106.059082031000059, + 12.082519531000059 + ], + [ + 106.063293457000043, + 12.081481934000067 + ], + [ + 106.068908691000047, + 12.080078125000057 + ], + [ + 106.071716309000067, + 12.082092285000044 + ], + [ + 106.075927734000061, + 12.081481934000067 + ], + [ + 106.074890137000068, + 12.077087402000075 + ], + [ + 106.073913574000073, + 12.072509766000053 + ], + [ + 106.077270508000083, + 12.070129395000038 + ], + [ + 106.080322266000053, + 12.069519043000071 + ], + [ + 106.083923340000069, + 12.069702148000033 + ], + [ + 106.086303711000085, + 12.071289062000062 + ], + [ + 106.086730957000043, + 12.07452392600004 + ], + [ + 106.090698242000087, + 12.073486328000058 + ], + [ + 106.094299316000047, + 12.074890137000068 + ], + [ + 106.095886230000076, + 12.072082520000038 + ], + [ + 106.100280762000068, + 12.074890137000068 + ], + [ + 106.104675293000071, + 12.074890137000068 + ], + [ + 106.10772705100004, + 12.073486328000058 + ], + [ + 106.111328125000057, + 12.075317383000026 + ], + [ + 106.113098145000038, + 12.072875977000024 + ], + [ + 106.115478516000053, + 12.070495605000076 + ], + [ + 106.117919922000056, + 12.067871094000054 + ], + [ + 106.117126465000069, + 12.065124512000068 + ], + [ + 106.118103027000075, + 12.062316895000038 + ], + [ + 106.121520996000072, + 12.060729980000076 + ], + [ + 106.120117187000062, + 12.057128906000059 + ], + [ + 106.122924805000082, + 12.055297852000024 + ], + [ + 106.126708984000061, + 12.056884766000053 + ], + [ + 106.128723145000038, + 12.054321289000029 + ], + [ + 106.131103516000053, + 12.055908203000058 + ], + [ + 106.132873535000044, + 12.052917480000076 + ], + [ + 106.132690430000082, + 12.049926758000026 + ], + [ + 106.133300781000059, + 12.046081543000071 + ], + [ + 106.136291504000042, + 12.048278809000067 + ], + [ + 106.136718750000057, + 12.051879883000026 + ], + [ + 106.139892578000058, + 12.049072266000053 + ], + [ + 106.143310547000056, + 12.052124023000033 + ], + [ + 106.146728516000053, + 12.054321289000029 + ], + [ + 106.148315430000082, + 12.051696777000075 + ], + [ + 106.150329590000069, + 12.048706055000025 + ], + [ + 106.154113770000038, + 12.048278809000067 + ], + [ + 106.155883789000086, + 12.044921875000057 + ], + [ + 106.157714844000054, + 12.040710449000073 + ], + [ + 106.162475586000085, + 12.042114258000026 + ], + [ + 106.165710449000073, + 12.038085937000062 + ], + [ + 106.169677734000061, + 12.036926270000038 + ], + [ + 106.172729492000087, + 12.034912109000061 + ], + [ + 106.172302246000072, + 12.030517578000058 + ], + [ + 106.17608642600004, + 12.027526855000076 + ], + [ + 106.179077148000033, + 12.023925781000059 + ], + [ + 106.179687500000057, + 12.019287109000061 + ], + [ + 106.176696777000075, + 12.016906738000046 + ], + [ + 106.179870605000076, + 12.015319824000073 + ], + [ + 106.181091309000067, + 12.010314941000047 + ], + [ + 106.179687500000057, + 12.005493164000029 + ], + [ + 106.175903320000089, + 12.002929687000062 + ], + [ + 106.175109863000046, + 11.998291016000053 + ], + [ + 106.171508789000086, + 11.996704102000024 + ], + [ + 106.170898437000062, + 11.99249267600004 + ], + [ + 106.170715332000043, + 11.989074707000043 + ], + [ + 106.170898437000062, + 11.986083984000061 + ], + [ + 106.171508789000086, + 11.981689453000058 + ], + [ + 106.174072266000053, + 11.978698730000076 + ], + [ + 106.174499512000068, + 11.975524902000075 + ], + [ + 106.174072266000053, + 11.971313477000024 + ], + [ + 106.171875, + 11.969299316000047 + ], + [ + 106.168884277000075, + 11.969726562000062 + ], + [ + 106.167114258000083, + 11.966674805000025 + ], + [ + 106.172302246000072, + 11.96569824200003 + ], + [ + 106.175476074000073, + 11.963684082000043 + ], + [ + 106.173706055000082, + 11.960327148000033 + ], + [ + 106.176513672000056, + 11.956115723000039 + ], + [ + 106.179687500000057, + 11.953125 + ], + [ + 106.183105469000054, + 11.954284668000071 + ], + [ + 106.186523437000062, + 11.956726074000073 + ], + [ + 106.188476562000062, + 11.961120605000076 + ], + [ + 106.19171142600004, + 11.962524414000029 + ], + [ + 106.195129395000038, + 11.964721680000025 + ], + [ + 106.196472168000071, + 11.967712402000075 + ], + [ + 106.199279785000044, + 11.968505859000061 + ], + [ + 106.199707031000059, + 11.965087891000053 + ], + [ + 106.203125, + 11.96569824200003 + ], + [ + 106.206726074000073, + 11.966125488000046 + ], + [ + 106.211120605000076, + 11.964904785000044 + ], + [ + 106.214721680000082, + 11.963928223000039 + ], + [ + 106.218688965000069, + 11.962280273000033 + ], + [ + 106.221130371000072, + 11.958129883000026 + ], + [ + 106.225097656000059, + 11.957519531000059 + ], + [ + 106.227905273000033, + 11.958679199000073 + ], + [ + 106.230895996000072, + 11.960327148000033 + ], + [ + 106.233276367000087, + 11.963317871000072 + ], + [ + 106.236083984000061, + 11.965881348000039 + ], + [ + 106.240478516000053, + 11.963500977000024 + ], + [ + 106.242309570000089, + 11.95928955100004 + ], + [ + 106.246704102000081, + 11.958496094000054 + ], + [ + 106.249328613000046, + 11.956481934000067 + ], + [ + 106.253112793000071, + 11.954284668000071 + ], + [ + 106.255920410000044, + 11.953674316000047 + ], + [ + 106.258911133000083, + 11.955688477000024 + ], + [ + 106.263916016000053, + 11.954284668000071 + ], + [ + 106.269287109000061, + 11.955078125000057 + ], + [ + 106.274291992000087, + 11.954711914000029 + ], + [ + 106.277099609000061, + 11.956298828000058 + ], + [ + 106.280883789000086, + 11.955078125000057 + ], + [ + 106.282470703000058, + 11.958496094000054 + ], + [ + 106.285888672000056, + 11.960510254000042 + ], + [ + 106.288330078000058, + 11.95788574200003 + ], + [ + 106.291687012000068, + 11.958923340000069 + ], + [ + 106.295471191000047, + 11.958923340000069 + ], + [ + 106.298706055000082, + 11.961486816000047 + ], + [ + 106.303527832000043, + 11.962890625000057 + ], + [ + 106.308105469000054, + 11.963684082000043 + ], + [ + 106.313293457000043, + 11.963928223000039 + ], + [ + 106.317871094000054, + 11.962280273000033 + ], + [ + 106.322326660000044, + 11.962280273000033 + ], + [ + 106.326721191000047, + 11.960693359000061 + ], + [ + 106.330078125000057, + 11.960327148000033 + ], + [ + 106.333312988000046, + 11.959716797000056 + ], + [ + 106.339111328000058, + 11.957702637000068 + ], + [ + 106.342712402000075, + 11.955871582000043 + ], + [ + 106.347290039000086, + 11.954284668000071 + ], + [ + 106.350280762000068, + 11.951904297000056 + ], + [ + 106.353515625000057, + 11.949890137000068 + ], + [ + 106.356689453000058, + 11.952087402000075 + ], + [ + 106.360290527000075, + 11.953491211000028 + ], + [ + 106.362915039000086, + 11.954895020000038 + ], + [ + 106.365478516000053, + 11.953674316000047 + ], + [ + 106.368286133000083, + 11.951293945000032 + ], + [ + 106.372070312000062, + 11.952880859000061 + ], + [ + 106.37530517600004, + 11.954528809000067 + ], + [ + 106.378906250000057, + 11.955322266000053 + ], + [ + 106.381713867000087, + 11.957092285000044 + ], + [ + 106.384521484000061, + 11.95928955100004 + ], + [ + 106.385314941000047, + 11.963684082000043 + ], + [ + 106.388305664000086, + 11.966308594000054 + ], + [ + 106.39093017600004, + 11.967895508000026 + ], + [ + 106.393310547000056, + 11.971130371000072 + ], + [ + 106.397888184000067, + 11.973083496000072 + ], + [ + 106.399719238000046, + 11.977294922000056 + ], + [ + 106.403503418000071, + 11.977294922000056 + ], + [ + 106.407714844000054, + 11.976318359000061 + ], + [ + 106.411071777000075, + 11.975097656000059 + ], + [ + 106.413879395000038, + 11.97351074200003 + ], + [ + 106.465515137000068, + 11.871520996000072 + ], + [ + 106.465881348000039, + 11.86749267600004 + ], + [ + 106.462097168000071, + 11.865905762000068 + ], + [ + 106.457885742000087, + 11.864501953000058 + ], + [ + 106.454895020000038, + 11.865478516000053 + ], + [ + 106.451110840000069, + 11.865478516000053 + ], + [ + 106.447875977000081, + 11.86608886700003 + ], + [ + 106.446472168000071, + 11.862915039000029 + ], + [ + 106.445312500000057, + 11.859924316000047 + ], + [ + 106.441894531000059, + 11.858520508000026 + ], + [ + 106.439697266000053, + 11.855529785000044 + ], + [ + 106.439086914000086, + 11.852111816000047 + ], + [ + 106.440307617000087, + 11.849121094000054 + ], + [ + 106.440673828000058, + 11.844909668000071 + ], + [ + 106.439270020000038, + 11.839721680000025 + ], + [ + 106.441284180000082, + 11.835083008000026 + ], + [ + 106.443481445000089, + 11.833129883000026 + ], + [ + 106.445678711000085, + 11.830505371000072 + ], + [ + 106.447082520000038, + 11.826904297000056 + ], + [ + 106.446716309000067, + 11.822692871000072 + ], + [ + 106.443908691000047, + 11.819885254000042 + ], + [ + 106.441284180000082, + 11.818115234000061 + ], + [ + 106.440673828000058, + 11.815124512000068 + ], + [ + 106.438293457000043, + 11.8125 + ], + [ + 106.436706543000071, + 11.809692383000026 + ], + [ + 106.434692383000083, + 11.80749511700003 + ], + [ + 106.433471680000082, + 11.804077148000033 + ], + [ + 106.434082031000059, + 11.800903320000032 + ], + [ + 106.431274414000086, + 11.797485352000024 + ], + [ + 106.429077148000033, + 11.794128418000071 + ], + [ + 106.427124023000033, + 11.791503906000059 + ], + [ + 106.42608642600004, + 11.787475586000028 + ], + [ + 106.423706055000082, + 11.783874512000068 + ], + [ + 106.421508789000086, + 11.78210449200003 + ], + [ + 106.419677734000061, + 11.778686523000033 + ], + [ + 106.417297363000046, + 11.774475098000039 + ], + [ + 106.417114258000083, + 11.769470215000069 + ], + [ + 106.415100098000039, + 11.766296387000068 + ], + [ + 106.417114258000083, + 11.763916016000053 + ], + [ + 106.416503906000059, + 11.76007080100004 + ], + [ + 106.418701172000056, + 11.758300781000059 + ], + [ + 106.419677734000061, + 11.754882812000062 + ], + [ + 106.420104980000076, + 11.751525879000042 + ], + [ + 106.421081543000071, + 11.748291016000053 + ], + [ + 106.422485352000081, + 11.744873047000056 + ], + [ + 106.422912598000039, + 11.741699219000054 + ], + [ + 106.422729492000087, + 11.738708496000072 + ], + [ + 106.425109863000046, + 11.736083984000061 + ], + [ + 106.427490234000061, + 11.732299805000025 + ], + [ + 106.427917480000076, + 11.728088379000042 + ], + [ + 106.429504395000038, + 11.725524902000075 + ], + [ + 106.432128906000059, + 11.722290039000029 + ], + [ + 106.434692383000083, + 11.718505859000061 + ], + [ + 106.434875488000046, + 11.714477539000029 + ], + [ + 106.4375, + 11.712707520000038 + ], + [ + 106.438903809000067, + 11.709472656000059 + ], + [ + 106.439514160000044, + 11.705078125000057 + ], + [ + 106.443298340000069, + 11.701721191000047 + ], + [ + 106.445922852000081, + 11.698303223000039 + ], + [ + 106.448913574000073, + 11.696899414000029 + ], + [ + 106.451293945000089, + 11.693298340000069 + ], + [ + 106.453674316000047, + 11.689514160000044 + ], + [ + 106.453491211000085, + 11.683288574000073 + ], + [ + 106.452880859000061, + 11.677490234000061 + ], + [ + 106.452697754000042, + 11.673095703000058 + ], + [ + 106.450500488000046, + 11.670715332000043 + ], + [ + 106.447326660000044, + 11.670471191000047 + ], + [ + 106.443725586000085, + 11.670104980000076 + ], + [ + 106.440124512000068, + 11.669494629000042 + ], + [ + 106.435485840000069, + 11.669921875000057 + ], + [ + 106.431701660000044, + 11.671508789000029 + ], + [ + 106.428527832000043, + 11.672912598000039 + ], + [ + 106.426879883000083, + 11.677124023000033 + ], + [ + 106.422302246000072, + 11.677673340000069 + ], + [ + 106.418884277000075, + 11.678283691000047 + ], + [ + 106.415100098000039, + 11.678527832000043 + ], + [ + 106.412475586000085, + 11.680908203000058 + ], + [ + 106.409729004000042, + 11.68389892600004 + ], + [ + 106.406677246000072, + 11.685913086000028 + ], + [ + 106.404296875000057, + 11.6875 + ], + [ + 106.401489258000083, + 11.689880371000072 + ], + [ + 106.397888184000067, + 11.691894531000059 + ], + [ + 106.392517090000069, + 11.692687988000046 + ], + [ + 106.389282227000081, + 11.693908691000047 + ], + [ + 106.386718750000057, + 11.696289062000062 + ], + [ + 106.382873535000044, + 11.696899414000029 + ], + [ + 106.379089355000076, + 11.696105957000043 + ], + [ + 106.37530517600004, + 11.696289062000062 + ], + [ + 106.371887207000043, + 11.696716309000067 + ], + [ + 106.368530273000033, + 11.696716309000067 + ], + [ + 106.363891602000081, + 11.695129395000038 + ], + [ + 106.360473633000083, + 11.693725586000028 + ], + [ + 106.357116699000073, + 11.692321777000075 + ], + [ + 106.352722168000071, + 11.689086914000029 + ], + [ + 106.349304199000073, + 11.686279297000056 + ], + [ + 106.345275879000042, + 11.685302734000061 + ], + [ + 106.341125488000046, + 11.682678223000039 + ], + [ + 106.336303711000085, + 11.681274414000029 + ], + [ + 106.33428955100004, + 11.683715820000032 + ], + [ + 106.334106445000089, + 11.687927246000072 + ], + [ + 106.330078125000057, + 11.686706543000071 + ], + [ + 106.327697754000042, + 11.683105469000054 + ], + [ + 106.324279785000044, + 11.681274414000029 + ], + [ + 106.321716309000067, + 11.680114746000072 + ], + [ + 106.319274902000075, + 11.678100586000028 + ], + [ + 106.317321777000075, + 11.675720215000069 + ], + [ + 106.313903809000067, + 11.674499512000068 + ], + [ + 106.30889892600004, + 11.674072266000053 + ], + [ + 106.303710937000062, + 11.673889160000044 + ], + [ + 106.298095703000058, + 11.673889160000044 + ], + [ + 106.297485352000081, + 11.677917480000076 + ], + [ + 106.297729492000087, + 11.681701660000044 + ], + [ + 106.294311523000033, + 11.685302734000061 + ], + [ + 106.292297363000046, + 11.6875 + ], + [ + 106.290283203000058, + 11.689697266000053 + ], + [ + 106.287719727000081, + 11.692077637000068 + ], + [ + 106.285278320000089, + 11.694274902000075 + ], + [ + 106.283081055000082, + 11.696289062000062 + ], + [ + 106.280273437000062, + 11.698913574000073 + ], + [ + 106.277709961000085, + 11.700927734000061 + ], + [ + 106.272521973000039, + 11.704711914000029 + ], + [ + 106.270324707000043, + 11.706481934000067 + ], + [ + 106.271484375000057, + 11.710327148000033 + ], + [ + 106.272277832000043, + 11.713500977000024 + ], + [ + 106.269714355000076, + 11.714904785000044 + ], + [ + 106.268127441000047, + 11.717895508000026 + ], + [ + 106.266296387000068, + 11.720520020000038 + ], + [ + 106.262084961000085, + 11.723693848000039 + ], + [ + 106.257507324000073, + 11.724670410000044 + ], + [ + 106.253479004000042, + 11.725891113000046 + ], + [ + 106.25030517600004, + 11.727905273000033 + ], + [ + 106.246704102000081, + 11.728088379000042 + ], + [ + 106.244079590000069, + 11.726928711000028 + ], + [ + 106.240905762000068, + 11.727478027000075 + ], + [ + 106.236694336000085, + 11.729309082000043 + ], + [ + 106.232299805000082, + 11.730712891000053 + ], + [ + 106.229125977000081, + 11.731506348000039 + ], + [ + 106.225891113000046, + 11.731506348000039 + ], + [ + 106.221679687000062, + 11.729675293000071 + ], + [ + 106.216674805000082, + 11.728271484000061 + ], + [ + 106.213317871000072, + 11.728698730000076 + ], + [ + 106.209472656000059, + 11.730712891000053 + ], + [ + 106.205505371000072, + 11.73327636700003 + ], + [ + 106.201721191000047, + 11.736877441000047 + ], + [ + 106.197692871000072, + 11.739501953000058 + ], + [ + 106.195129395000038, + 11.74249267600004 + ], + [ + 106.194519043000071, + 11.747924805000025 + ], + [ + 106.192687988000046, + 11.752075195000032 + ], + [ + 106.189270020000038, + 11.753906250000057 + ], + [ + 106.184692383000083, + 11.752075195000032 + ], + [ + 106.181701660000044, + 11.748291016000053 + ], + [ + 106.178894043000071, + 11.747497559000067 + ], + [ + 106.175476074000073, + 11.747924805000025 + ], + [ + 106.170471191000047, + 11.747924805000025 + ], + [ + 106.166503906000059, + 11.746887207000043 + ], + [ + 106.163330078000058, + 11.744689941000047 + ], + [ + 106.160888672000056, + 11.741271973000039 + ], + [ + 106.157287598000039, + 11.738525391000053 + ], + [ + 106.153076172000056, + 11.737121582000043 + ], + [ + 106.148925781000059, + 11.738281250000057 + ], + [ + 106.145507812000062, + 11.740478516000053 + ], + [ + 106.141296387000068, + 11.741882324000073 + ], + [ + 106.138305664000086, + 11.743896484000061 + ], + [ + 106.134521484000061, + 11.744323730000076 + ], + [ + 106.131103516000053, + 11.745483398000033 + ], + [ + 106.126281738000046, + 11.745300293000071 + ], + [ + 106.122314453000058, + 11.744873047000056 + ], + [ + 106.118896484000061, + 11.743286133000026 + ], + [ + 106.115905762000068, + 11.742919922000056 + ], + [ + 106.112487793000071, + 11.744079590000069 + ], + [ + 106.108276367000087, + 11.745910645000038 + ], + [ + 106.104125977000081, + 11.747924805000025 + ], + [ + 106.102294922000056, + 11.751525879000042 + ], + [ + 106.101501465000069, + 11.754272461000028 + ], + [ + 106.098693848000039, + 11.755920410000044 + ], + [ + 106.094726562000062, + 11.756896973000039 + ], + [ + 106.092895508000083, + 11.762512207000043 + ], + [ + 106.090087891000053, + 11.765502930000025 + ], + [ + 106.087097168000071, + 11.766723633000026 + ], + [ + 106.084472656000059, + 11.76788330100004 + ], + [ + 106.081481934000067, + 11.769897461000028 + ], + [ + 106.078125, + 11.770874023000033 + ], + [ + 106.074707031000059, + 11.772521973000039 + ], + [ + 106.071472168000071, + 11.77429199200003 + ], + [ + 106.068115234000061, + 11.776489258000026 + ], + [ + 106.063720703000058, + 11.776306152000075 + ], + [ + 106.059326172000056, + 11.77569580100004 + ], + [ + 106.054870605000076, + 11.774902344000054 + ], + [ + 106.050720215000069, + 11.774475098000039 + ], + [ + 106.046875, + 11.776123047000056 + ], + [ + 106.041687012000068, + 11.778076172000056 + ], + [ + 106.037475586000085, + 11.776672363000046 + ], + [ + 106.032287598000039, + 11.775329590000069 + ], + [ + 106.027099609000061, + 11.775085449000073 + ], + [ + 106.024108887000068, + 11.775329590000069 + ], + [ + 106.022094727000081, + 11.773071289000029 + ], + [ + 106.019714355000076, + 11.771118164000029 + ], + [ + 106.017089844000054, + 11.76788330100004 + ], + [ + 106.015319824000073, + 11.765686035000044 + ], + [ + 106.013671875000057, + 11.762084961000028 + ], + [ + 106.012878418000071, + 11.758483887000068 + ], + [ + 106.012084961000085, + 11.755676270000038 + ], + [ + 106.011108398000033, + 11.752929687000062 + ], + [ + 106.010681152000075, + 11.74890136700003 + ], + [ + 106.011901855000076, + 11.745910645000038 + ], + [ + 106.013305664000086, + 11.742675781000059 + ], + [ + 106.014709473000039, + 11.739074707000043 + ], + [ + 106.01593017600004, + 11.73468017600004 + ], + [ + 106.016113281000059, + 11.729492187000062 + ], + [ + 106.014709473000039, + 11.726501465000069 + ], + [ + 106.012329102000081, + 11.724487305000025 + ], + [ + 106.01007080100004, + 11.722717285000044 + ], + [ + 106.00811767600004, + 11.718505859000061 + ], + [ + 106.006713867000087, + 11.714111328000058 + ], + [ + 106.006103516000053, + 11.711303711000028 + ], + [ + 106.004882812000062, + 11.708312988000046 + ], + [ + 106.003479004000042, + 11.704895020000038 + ], + [ + 106.000671387000068, + 11.702697754000042 + ], + [ + 105.996887207000043, + 11.702880859000061 + ], + [ + 105.994323730000076, + 11.701721191000047 + ], + [ + 105.991271973000039, + 11.699279785000044 + ], + [ + 105.988891602000081, + 11.696899414000029 + ], + [ + 105.986694336000085, + 11.694885254000042 + ], + [ + 105.983703613000046, + 11.693298340000069 + ], + [ + 105.981506348000039, + 11.69030761700003 + ], + [ + 105.978088379000042, + 11.686096191000047 + ], + [ + 105.980529785000044, + 11.680908203000058 + ], + [ + 105.981872559000067, + 11.676879883000026 + ], + [ + 105.982299805000082, + 11.673095703000058 + ], + [ + 105.982116699000073, + 11.669128418000071 + ], + [ + 105.980285645000038, + 11.66632080100004 + ], + [ + 105.976501465000069, + 11.664489746000072 + ], + [ + 105.973510742000087, + 11.662109375000057 + ], + [ + 105.972106934000067, + 11.659484863000046 + ], + [ + 105.970092773000033, + 11.656921387000068 + ], + [ + 105.967285156000059, + 11.653930664000029 + ], + [ + 105.964294434000067, + 11.651489258000026 + ], + [ + 105.960510254000042, + 11.647705078000058 + ], + [ + 105.957275391000053, + 11.643676758000026 + ], + [ + 105.953308105000076, + 11.640686035000044 + ], + [ + 105.949096680000082, + 11.641113281000059 + ], + [ + 105.946289062000062, + 11.641906738000046 + ], + [ + 105.943481445000089, + 11.642517090000069 + ], + [ + 105.939880371000072, + 11.643920898000033 + ], + [ + 105.935119629000042, + 11.645324707000043 + ], + [ + 105.931884766000053, + 11.646728516000053 + ], + [ + 105.929077148000033, + 11.647888184000067 + ], + [ + 105.925476074000073, + 11.64929199200003 + ], + [ + 105.922912598000039, + 11.65069580100004 + ], + [ + 105.919921875000057, + 11.653320312000062 + ], + [ + 105.916687012000068, + 11.655273437000062 + ], + [ + 105.914306641000053, + 11.656921387000068 + ], + [ + 105.910888672000056, + 11.659118652000075 + ], + [ + 105.907287598000039, + 11.661315918000071 + ], + [ + 105.904479980000076, + 11.663513184000067 + ], + [ + 105.901123047000056, + 11.66632080100004 + ], + [ + 105.897521973000039, + 11.670471191000047 + ], + [ + 105.894470215000069, + 11.673278809000067 + ], + [ + 105.891479492000087, + 11.675903320000032 + ], + [ + 105.887878418000071, + 11.677307129000042 + ], + [ + 105.884704590000069, + 11.677124023000033 + ], + [ + 105.880310059000067, + 11.675109863000046 + ], + [ + 105.876525879000042, + 11.674072266000053 + ], + [ + 105.873901367000087, + 11.671081543000071 + ], + [ + 105.869689941000047, + 11.670715332000043 + ], + [ + 105.866088867000087, + 11.669128418000071 + ], + [ + 105.863525391000053, + 11.667480469000054 + ], + [ + 105.860290527000075, + 11.666687012000068 + ], + [ + 105.855895996000072, + 11.664672852000024 + ], + [ + 105.853088379000042, + 11.662719727000024 + ], + [ + 105.84991455100004, + 11.659729004000042 + ], + [ + 105.847106934000067, + 11.656311035000044 + ], + [ + 105.844116211000085, + 11.651123047000056 + ], + [ + 105.841125488000046, + 11.648315430000025 + ], + [ + 105.837280273000033, + 11.646484375000057 + ], + [ + 105.836914062000062, + 11.641296387000068 + ], + [ + 105.836730957000043, + 11.637329102000024 + ], + [ + 105.836303711000085, + 11.633911133000026 + ], + [ + 105.834716797000056, + 11.630920410000044 + ], + [ + 105.833129883000083, + 11.627685547000056 + ], + [ + 105.831909180000082, + 11.624694824000073 + ], + [ + 105.829101562000062, + 11.621520996000072 + ], + [ + 105.824707031000059, + 11.619506836000028 + ], + [ + 105.820129395000038, + 11.620117187000062 + ], + [ + 105.816528320000089, + 11.619506836000028 + ], + [ + 105.812683105000076, + 11.619689941000047 + ], + [ + 105.810119629000042, + 11.618286133000026 + ], + [ + 105.811279297000056, + 11.615112305000025 + ], + [ + 105.811889648000033, + 11.612121582000043 + ], + [ + 105.813110352000081, + 11.609130859000061 + ], + [ + 105.811889648000033, + 11.606079102000024 + ], + [ + 105.810913086000085, + 11.603271484000061 + ], + [ + 105.809509277000075, + 11.599487305000025 + ], + [ + 105.806884766000053, + 11.603271484000061 + ], + [ + 105.804077148000033, + 11.605285645000038 + ], + [ + 105.801330566000047, + 11.605895996000072 + ], + [ + 105.798522949000073, + 11.606506348000039 + ], + [ + 105.795715332000043, + 11.60772705100004 + ], + [ + 105.794128418000071, + 11.610290527000075 + ], + [ + 105.79327392600004, + 11.613891602000024 + ], + [ + 105.789916992000087, + 11.616699219000054 + ], + [ + 105.789672852000081, + 11.620910645000038 + ], + [ + 105.785888672000056, + 11.623718262000068 + ], + [ + 105.783081055000082, + 11.626708984000061 + ], + [ + 105.780273437000062, + 11.627929687000062 + ], + [ + 105.778930664000086, + 11.631286621000072 + ], + [ + 105.775085449000073, + 11.633911133000026 + ], + [ + 105.774719238000046, + 11.637695312000062 + ], + [ + 105.770080566000047, + 11.641113281000059 + ], + [ + 105.76788330100004, + 11.646118164000029 + ], + [ + 105.766906738000046, + 11.65069580100004 + ], + [ + 105.764709473000039, + 11.652893066000047 + ], + [ + 105.767089844000054, + 11.655090332000043 + ], + [ + 105.765075684000067, + 11.659301758000026 + ], + [ + 105.764892578000058, + 11.663879395000038 + ], + [ + 105.762512207000043, + 11.668090820000032 + ], + [ + 105.758483887000068, + 11.669494629000042 + ], + [ + 105.757507324000073, + 11.673522949000073 + ], + [ + 105.755920410000044, + 11.677917480000076 + ], + [ + 105.751892090000069, + 11.679870605000076 + ], + [ + 105.749084473000039, + 11.681701660000044 + ], + [ + 105.745910645000038, + 11.682922363000046 + ], + [ + 105.742309570000089, + 11.685913086000028 + ], + [ + 105.739685059000067, + 11.688476562000062 + ], + [ + 105.736511230000076, + 11.691101074000073 + ], + [ + 105.73272705100004, + 11.693115234000061 + ], + [ + 105.731689453000058, + 11.699096680000025 + ], + [ + 105.731323242000087, + 11.702270508000026 + ], + [ + 105.730102539000086, + 11.704895020000038 + ], + [ + 105.728698730000076, + 11.70788574200003 + ], + [ + 105.727294922000056, + 11.710693359000061 + ], + [ + 105.725524902000075, + 11.713500977000024 + ], + [ + 105.723876953000058, + 11.717285156000059 + ], + [ + 105.721679687000062, + 11.721496582000043 + ], + [ + 105.720275879000042, + 11.725097656000059 + ], + [ + 105.716491699000073, + 11.728271484000061 + ], + [ + 105.713684082000043, + 11.730895996000072 + ], + [ + 105.710327148000033, + 11.734130859000061 + ], + [ + 105.706726074000073, + 11.737487793000071 + ], + [ + 105.704528809000067, + 11.739685059000067 + ], + [ + 105.701293945000089, + 11.74249267600004 + ], + [ + 105.698120117000087, + 11.742919922000056 + ], + [ + 105.694702148000033, + 11.74249267600004 + ], + [ + 105.687927246000072, + 11.741271973000039 + ], + [ + 105.684082031000059, + 11.740722656000059 + ], + [ + 105.680725098000039, + 11.740478516000053 + ], + [ + 105.675720215000069, + 11.740722656000059 + ], + [ + 105.671325684000067, + 11.739685059000067 + ], + [ + 105.66827392600004, + 11.738708496000072 + ], + [ + 105.664672852000081, + 11.739685059000067 + ], + [ + 105.660522461000085, + 11.740722656000059 + ], + [ + 105.656311035000044, + 11.74249267600004 + ], + [ + 105.653076172000056, + 11.742919922000056 + ], + [ + 105.649291992000087, + 11.743530273000033 + ], + [ + 105.644104004000042, + 11.743713379000042 + ], + [ + 105.639526367000087, + 11.743286133000026 + ], + [ + 105.635925293000071, + 11.743286133000026 + ], + [ + 105.631713867000087, + 11.742919922000056 + ], + [ + 105.628295898000033, + 11.742919922000056 + ], + [ + 105.624084473000039, + 11.743103027000075 + ], + [ + 105.619873047000056, + 11.74249267600004 + ], + [ + 105.615295410000044, + 11.743286133000026 + ], + [ + 105.611328125000057, + 11.744323730000076 + ], + [ + 105.607910156000059, + 11.744873047000056 + ], + [ + 105.603088379000042, + 11.745300293000071 + ], + [ + 105.598876953000058, + 11.745300293000071 + ], + [ + 105.594726562000062, + 11.745300293000071 + ], + [ + 105.589111328000058, + 11.746093750000057 + ], + [ + 105.585083008000083, + 11.747070312000062 + ], + [ + 105.581115723000039, + 11.748291016000053 + ], + [ + 105.577880859000061, + 11.749084473000039 + ], + [ + 105.575073242000087, + 11.751098633000026 + ], + [ + 105.568481445000089, + 11.749084473000039 + ], + [ + 105.562316895000038, + 11.749328613000046 + ], + [ + 105.557312012000068, + 11.749694824000073 + ], + [ + 105.552307129000042, + 11.75030517600004 + ], + [ + 105.549072266000053, + 11.75030517600004 + ], + [ + 105.546325684000067, + 11.751281738000046 + ], + [ + 105.54327392600004, + 11.751708984000061 + ], + [ + 105.539672852000081, + 11.751708984000061 + ], + [ + 105.535095215000069, + 11.752319336000028 + ], + [ + 105.531127930000082, + 11.754272461000028 + ], + [ + 105.528076172000056, + 11.755920410000044 + ], + [ + 105.523315430000082, + 11.755920410000044 + ], + [ + 105.518676758000083, + 11.755310059000067 + ], + [ + 105.514099121000072, + 11.756103516000053 + ], + [ + 105.510498047000056, + 11.757690430000025 + ], + [ + 105.506103516000053, + 11.759887695000032 + ], + [ + 105.501708984000061, + 11.762329102000024 + ], + [ + 105.498291016000053, + 11.763305664000029 + ], + [ + 105.495117187000062, + 11.763671875000057 + ], + [ + 105.490722656000059, + 11.763305664000029 + ], + [ + 105.485900879000042, + 11.763488770000038 + ], + [ + 105.481323242000087, + 11.764099121000072 + ], + [ + 105.478271484000061, + 11.764099121000072 + ], + [ + 105.475097656000059, + 11.76452636700003 + ], + [ + 105.470703125000057, + 11.764709473000039 + ], + [ + 105.466918945000089, + 11.765319824000073 + ], + [ + 105.463684082000043, + 11.765502930000025 + ], + [ + 105.460693359000061, + 11.765075684000067 + ], + [ + 105.457519531000059, + 11.762329102000024 + ], + [ + 105.454528809000067, + 11.759704590000069 + ], + [ + 105.451110840000069, + 11.757080078000058 + ], + [ + 105.447326660000044, + 11.755126953000058 + ], + [ + 105.442321777000075, + 11.755676270000038 + ], + [ + 105.438110352000081, + 11.759094238000046 + ], + [ + 105.43389892600004, + 11.762084961000028 + ], + [ + 105.431274414000086, + 11.763488770000038 + ], + [ + 105.427307129000042, + 11.76593017600004 + ], + [ + 105.424499512000068, + 11.768127441000047 + ], + [ + 105.422302246000072, + 11.770507812000062 + ], + [ + 105.418884277000075, + 11.772521973000039 + ], + [ + 105.418701172000056, + 11.776916504000042 + ], + [ + 105.416870117000087, + 11.779296875000057 + ], + [ + 105.415100098000039, + 11.784118652000075 + ], + [ + 105.414489746000072, + 11.788696289000029 + ], + [ + 105.412475586000085, + 11.792724609000061 + ], + [ + 105.407470703000058, + 11.794128418000071 + ], + [ + 105.410522461000085, + 11.796875 + ], + [ + 105.413330078000058, + 11.800109863000046 + ], + [ + 105.415283203000058, + 11.802307129000042 + ], + [ + 105.415283203000058, + 11.805480957000043 + ], + [ + 105.414306641000053, + 11.809692383000026 + ], + [ + 105.413513184000067, + 11.813476562000062 + ], + [ + 105.412719727000081, + 11.817871094000054 + ], + [ + 105.415893555000082, + 11.821289062000062 + ], + [ + 105.419128418000071, + 11.823486328000058 + ], + [ + 105.418701172000056, + 11.827697754000042 + ], + [ + 105.422119141000053, + 11.828674316000047 + ], + [ + 105.424926758000083, + 11.829284668000071 + ], + [ + 105.428100586000085, + 11.830078125000057 + ], + [ + 105.433105469000054, + 11.831115723000039 + ], + [ + 105.438110352000081, + 11.832092285000044 + ], + [ + 105.441528320000089, + 11.832702637000068 + ], + [ + 105.444274902000075, + 11.833496094000054 + ], + [ + 105.446899414000086, + 11.836303711000028 + ], + [ + 105.447082520000038, + 11.839477539000029 + ], + [ + 105.447692871000072, + 11.843322754000042 + ], + [ + 105.448303223000039, + 11.847717285000044 + ], + [ + 105.449096680000082, + 11.853088379000042 + ], + [ + 105.450073242000087, + 11.861511230000076 + ], + [ + 105.449890137000068, + 11.865295410000044 + ], + [ + 105.451110840000069, + 11.869506836000028 + ], + [ + 105.451904297000056, + 11.872680664000029 + ], + [ + 105.453491211000085, + 11.876281738000046 + ], + [ + 105.453674316000047, + 11.881530762000068 + ], + [ + 105.453674316000047, + 11.885925293000071 + ], + [ + 105.453491211000085, + 11.890319824000073 + ], + [ + 105.455871582000043, + 11.891906738000046 + ], + [ + 105.459106445000089, + 11.893920898000033 + ], + [ + 105.463684082000043, + 11.898071289000029 + ], + [ + 105.466918945000089, + 11.900878906000059 + ], + [ + 105.463684082000043, + 11.904296875000057 + ], + [ + 105.460083008000083, + 11.907897949000073 + ], + [ + 105.457092285000044, + 11.911499023000033 + ], + [ + 105.454895020000038, + 11.913696289000029 + ], + [ + 105.459472656000059, + 11.918884277000075 + ], + [ + 105.463684082000043, + 11.926879883000026 + ], + [ + 105.466674805000082, + 11.935485840000069 + ], + [ + 105.468322754000042, + 11.941284180000025 + ], + [ + 105.469299316000047, + 11.946472168000071 + ], + [ + 105.470275879000042, + 11.952087402000075 + ], + [ + 105.470275879000042, + 11.95788574200003 + ], + [ + 105.470275879000042, + 11.964294434000067 + ], + [ + 105.470520020000038, + 11.971496582000043 + ], + [ + 105.470520020000038, + 11.978881836000028 + ], + [ + 105.471130371000072, + 11.984313965000069 + ], + [ + 105.470886230000076, + 11.989074707000043 + ], + [ + 105.471130371000072, + 11.993286133000026 + ], + [ + 105.471313477000081, + 11.997314453000058 + ], + [ + 105.471496582000043, + 12.001098633000026 + ], + [ + 105.473083496000072, + 12.003479004000042 + ], + [ + 105.471496582000043, + 12.007690430000025 + ], + [ + 105.472290039000086, + 12.013305664000029 + ], + [ + 105.472900391000053, + 12.01788330100004 + ], + [ + 105.474670410000044, + 12.020874023000033 + ], + [ + 105.476318359000061, + 12.023681641000053 + ], + [ + 105.478515625000057, + 12.027099609000061 + ], + [ + 105.479675293000071, + 12.029724121000072 + ], + [ + 105.481079102000081, + 12.032287598000039 + ], + [ + 105.483093262000068, + 12.034912109000061 + ], + [ + 105.485717773000033, + 12.038696289000029 + ], + [ + 105.487121582000043, + 12.034912109000061 + ], + [ + 105.490722656000059, + 12.024719238000046 + ], + [ + 105.500671387000068, + 12.030883789000029 + ], + [ + 105.503723145000038, + 12.031921387000068 + ], + [ + 105.518493652000075, + 12.031677246000072 + ], + [ + 105.522705078000058, + 12.030700684000067 + ], + [ + 105.526306152000075, + 12.030883789000029 + ], + [ + 105.529479980000076, + 12.031311035000044 + ], + [ + 105.536926270000038, + 12.033874512000068 + ], + [ + 105.541687012000068, + 12.03991699200003 + ], + [ + 105.544494629000042, + 12.043884277000075 + ], + [ + 105.546875, + 12.050109863000046 + ], + [ + 105.547729492000087, + 12.053100586000028 + ], + [ + 105.548278809000067, + 12.056274414000029 + ], + [ + 105.547912598000039, + 12.059692383000026 + ], + [ + 105.546508789000086, + 12.062683105000076 + ], + [ + 105.544494629000042, + 12.06671142600004 + ], + [ + 105.542114258000083, + 12.070129395000038 + ], + [ + 105.540527344000054, + 12.073486328000058 + ], + [ + 105.539123535000044, + 12.076721191000047 + ], + [ + 105.537475586000085, + 12.079284668000071 + ], + [ + 105.536499023000033, + 12.082092285000044 + ], + [ + 105.535095215000069, + 12.086120605000076 + ], + [ + 105.534301758000083, + 12.089111328000058 + ], + [ + 105.533874512000068, + 12.093322754000042 + ], + [ + 105.532287598000039, + 12.097473145000038 + ], + [ + 105.530517578000058, + 12.101928711000028 + ], + [ + 105.530090332000043, + 12.105895996000072 + ], + [ + 105.530517578000058, + 12.110473633000026 + ], + [ + 105.529907227000081, + 12.115295410000044 + ], + [ + 105.531677246000072, + 12.118286133000026 + ], + [ + 105.532287598000039, + 12.122314453000058 + ], + [ + 105.533325195000089, + 12.127502441000047 + ], + [ + 105.534118652000075, + 12.131286621000072 + ], + [ + 105.534118652000075, + 12.134704590000069 + ], + [ + 105.534301758000083, + 12.139099121000072 + ], + [ + 105.534729004000042, + 12.14288330100004 + ], + [ + 105.535278320000089, + 12.147277832000043 + ], + [ + 105.535705566000047, + 12.152526855000076 + ], + [ + 105.536071777000075, + 12.156127930000025 + ], + [ + 105.536499023000033, + 12.159912109000061 + ], + [ + 105.536926270000038, + 12.164123535000044 + ], + [ + 105.538879395000038, + 12.169128418000071 + ], + [ + 105.539672852000081, + 12.174316406000059 + ], + [ + 105.541076660000044, + 12.178283691000047 + ], + [ + 105.539489746000072, + 12.181701660000044 + ], + [ + 105.538879395000038, + 12.185485840000069 + ], + [ + 105.538513184000067, + 12.188903809000067 + ], + [ + 105.538085937000062, + 12.192321777000075 + ], + [ + 105.536926270000038, + 12.197082520000038 + ], + [ + 105.535888672000056, + 12.201721191000047 + ], + [ + 105.535278320000089, + 12.206115723000039 + ], + [ + 105.535522461000085, + 12.211303711000028 + ], + [ + 105.536499023000033, + 12.214721680000025 + ], + [ + 105.536926270000038, + 12.218872070000032 + ], + [ + 105.536926270000038, + 12.223693848000039 + ], + [ + 105.537719727000081, + 12.229125977000024 + ], + [ + 105.538879395000038, + 12.234313965000069 + ], + [ + 105.539672852000081, + 12.237915039000029 + ], + [ + 105.540710449000073, + 12.241516113000046 + ], + [ + 105.541687012000068, + 12.246093750000057 + ], + [ + 105.542724609000061, + 12.249511719000054 + ], + [ + 105.543884277000075, + 12.253479004000042 + ], + [ + 105.544921875000057, + 12.256896973000039 + ], + [ + 105.546325684000067, + 12.259887695000032 + ], + [ + 105.547729492000087, + 12.262878418000071 + ], + [ + 105.549316406000059, + 12.26593017600004 + ], + [ + 105.551696777000075, + 12.269714355000076 + ], + [ + 105.554687500000057, + 12.27429199200003 + ], + [ + 105.556884766000053, + 12.277099609000061 + ], + [ + 105.559082031000059, + 12.279907227000024 + ], + [ + 105.562072754000042, + 12.282470703000058 + ], + [ + 105.565673828000058, + 12.286071777000075 + ], + [ + 105.570678711000085, + 12.28991699200003 + ], + [ + 105.57647705100004, + 12.292480469000054 + ], + [ + 105.580078125000057, + 12.295471191000047 + ], + [ + 105.583679199000073, + 12.297302246000072 + ], + [ + 105.587524414000086, + 12.298889160000044 + ], + [ + 105.610717773000033, + 12.300476074000073 + ], + [ + 105.621093750000057, + 12.298706055000025 + ], + [ + 105.634704590000069, + 12.29327392600004 + ], + [ + 105.637329102000081, + 12.292114258000026 + ], + [ + 105.641723633000083, + 12.288696289000029 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/dashboard/public/images/nrml-logo.png b/dashboard/public/images/nrml-logo.png new file mode 100644 index 0000000..b800314 Binary files /dev/null and b/dashboard/public/images/nrml-logo.png differ diff --git a/dashboard/public/index.php b/dashboard/public/index.php new file mode 100644 index 0000000..ee8f07e --- /dev/null +++ b/dashboard/public/index.php @@ -0,0 +1,20 @@ +handleRequest(Request::capture()); diff --git a/dashboard/public/js/dashboard/charts.js b/dashboard/public/js/dashboard/charts.js new file mode 100644 index 0000000..f410d11 --- /dev/null +++ b/dashboard/public/js/dashboard/charts.js @@ -0,0 +1,348 @@ +Chart.register({ + id: 'noDataText', + afterDraw(chart) { + + const datasets = chart.data.datasets || []; + + const hasData = datasets.some(ds => + (ds.data || []).some(v => Number(v) > 0) + ); + + chart.$noData = !hasData; + + if (hasData) return; + + const { ctx, width, height } = chart; + + ctx.save(); + ctx.textAlign = 'center'; + ctx.textBaseline = 'middle'; + ctx.font = '14px sans-serif'; + ctx.fillStyle = '#9ca3af'; + + ctx.fillText('No data available', width / 2, height / 2); + + ctx.restore(); + } +}); +Chart.register({ + id: 'centerText', + afterDraw(chart) { + + if (chart.config.type !== 'doughnut') return; + if (chart.$noData) return; + + const { ctx, chartArea } = chart; + + const data = chart.data.datasets[0].data; + const total = + chart.$totalTested || + chart.$afiTotalCases || + data.reduce((a, b) => a + b, 0); + + if (!chartArea) return; + + const centerX = (chartArea.left + chartArea.right) / 2; + const centerY = (chartArea.top + chartArea.bottom) / 2; + + ctx.save(); + + ctx.textAlign = 'center'; + ctx.textBaseline = 'middle'; + + ctx.font = 'bold 18px sans-serif'; + ctx.fillStyle = '#111827'; + ctx.fillText(total, centerX, centerY - 8); + + ctx.font = '12px sans-serif'; + ctx.fillStyle = '#6b7280'; + ctx.fillText('Total cases', centerX, centerY + 12); + + ctx.restore(); + } +}); +Chart.register(ChartDataLabels); +Chart.defaults.devicePixelRatio = 2; +const charts = {}; + + +function buildStackedChart(canvasId, labels, data) { + const ctx = document.getElementById(canvasId); + + if (!ctx) return; + + if (charts[canvasId]) { + charts[canvasId].destroy(); + } + + charts[canvasId] = new Chart(ctx, { + + type: "bar", + + data: { + labels: labels, + datasets: data.map(ds => ({ + ...ds, + borderWidth: 1, + barPercentage: 0.9, + categoryPercentage: 0.8, + maxBarThickness: 60 + })) + }, + + plugins: [ChartDataLabels], + options: { + responsive: true, + maintainAspectRatio: false, + + layout: { + padding: { + top: 20, + bottom: 30 + } + }, + + + plugins: { + legend: { + position: 'bottom', + align: 'center', + + labels: { + padding: 20, + boxWidth: 10, + boxHeight: 10, + usePointStyle: true, + pointStyle: 'circle' + } + }, + // datalabels: { + // color: "#000", + // anchor: "end", + // align: "top", + // clamp: true, + // clip: false, + // font: { + // weight: "bold", + // size: 10 + // }, + // formatter: function (value) { + // return value > 0 ? value : null; + // } + // } + datalabels: { + display: false + } + }, + + scales: { + x: { + stacked: true + }, + y: { + stacked: true, + beginAtZero: true + } + } + } + }); +} +function buildChart(id, type, labels, data) { + + const ctx = document.getElementById(id); + if (!ctx) return; + + Chart.getChart(id)?.destroy(); + + const hasData = data && data.some(v => Number(v) > 0); + + if (!hasData) { + labels = []; + data = []; + } + const isHorizontal = id === 'sexChart'; + const isAgeChart = id === 'ageChart'; + const isSentinelChart = id === 'sentinelChart'; + const options = { + responsive: true, + maintainAspectRatio: false, + + layout: { + padding: 30 + }, + + + indexAxis: isHorizontal ? 'y' : 'x', + plugins: { + + legend: { + position: isAgeChart || isSentinelChart ? 'left' : 'bottom', + align: 'center', + display: (ctx) => { + const chart = ctx.chart; + + if (!(chart.config.type === 'pie' || chart.config.type === 'doughnut')) { + return false; + } + + return !chart.$noData; + }, + labels: { + padding: 14, + boxWidth: 10, + boxHeight: 10, + usePointStyle: true, + pointStyle: 'circle', + font: { + size: 11 + } + } + }, + datalabels: { + color: "#282626", + offset: 6, + clip: false, + display: (ctx) => { + const chart = ctx.chart; + if (chart.$noData) return false; + if (chart.config.type === 'bar') return true; + return !chart.$noData; + }, + anchor: (ctx) => { + const type = ctx.chart.config.type; + + if (type === 'doughnut' || type === 'pie') { + return 'center'; + } + + return 'end'; + }, + + align: (ctx) => { + const type = ctx.chart.config.type; + if (type === 'doughnut' || type === 'pie') { + return 'center'; + } + if (type === 'bar') { + return ctx.chart.options.indexAxis === 'y' ? 'right' : 'end'; + } + return 'center'; + }, + font: { + size: 10, + weight: '600' + }, + + formatter: (value, ctx) => { + if (ctx.chart.$noData) return ''; + + const data = ctx.chart.data.datasets[0].data; + const total = + ctx.chart.$totalTested || + data.reduce((a, b) => a + b, 0); + + if (!total) return ''; + + return ((value / total) * 100).toFixed(1) + '%'; + } + } + } + }; + if (type === 'bar') { + options.scales = { + x: { + beginAtZero: true, + grid: { + display: false + } + }, + y: { + grid: { + color: '#f3f4f6' + } + } + }; + } + if (type === 'doughnut') { + options.cutout = '70%'; + options.maintainAspectRatio = false; + options.elements = { + arc: { + borderWidth: (ctx) => ctx.chart.$noData ? 0 : 1 + } + + }; + } + + charts[id] = new Chart(ctx, { + + type: type, + data: { + labels: labels, + datasets: [{ + data: data, + borderWidth: 2, + tension: 0.3, + barPercentage: 0.8, + categoryPercentage: 0.6, + maxBarThickness: 50 + }] + }, + options: options + }); + charts[id].$totalTested = 0; +} +function buildMixedTrendChart(canvasId, labels, samples, lines) { + + const ctx = document.getElementById(canvasId); + if (!ctx) return; + + if (charts[canvasId]) charts[canvasId].destroy(); + + const datasets = []; + + lines.forEach(line => { + datasets.push({ + type: 'line', + label: line.label, + data: line.data, + borderColor: line.color, + backgroundColor: line.color, + tension: 0.4, + yAxisID: 'y1', + pointStyle: 'line' + }); + }); + + datasets.push({ + type: 'bar', + label: 'Total Cases', + data: samples, + backgroundColor: '#007ce8', + maxBarThickness: 60, + yAxisID: 'y', + + }); + + charts[canvasId] = new Chart(ctx, { + data: { labels, datasets }, + options: { + responsive: true, + maintainAspectRatio: false, + plugins: { + legend: { position: 'bottom' }, + datalabels: { + display: false + } + }, + scales: { + y: { title: { display: true, text: 'Cases' } }, + y1: { + position: 'right', + grid: { drawOnChartArea: false }, + title: { display: true, text: '% Positivity' } + } + } + } + }); +} \ No newline at end of file diff --git a/dashboard/public/js/dashboard/export.js b/dashboard/public/js/dashboard/export.js new file mode 100644 index 0000000..6fe4b37 --- /dev/null +++ b/dashboard/public/js/dashboard/export.js @@ -0,0 +1,555 @@ +document.addEventListener("DOMContentLoaded", () => { + + const toggle = document.getElementById("exportToggle"); + const items = document.getElementById("exportItems"); + const close = document.getElementById("exportClose"); + + if (!toggle || !items) return; + + toggle.addEventListener("click", () => { + items.classList.toggle("show"); + + toggle.innerText = items.classList.contains("show") + ? "Export ▾" + : "Export ▸"; + }); + + if (close) { + close.addEventListener("click", () => { + items.classList.remove("show"); + toggle.innerText = "Export ▸"; + }); + } + +}); + +function openChartSelector() { + + if (typeof charts === "undefined" || Object.keys(charts).length === 0) { + alert("Charts are still loading. Please try again."); + return; + } + + const modal = document.getElementById("chartModal"); + const list = document.getElementById("chartList"); + + list.innerHTML = ""; + + Object.keys(charts).forEach(id => { + list.innerHTML += ` + + `; + }); + list.innerHTML += ` + + `; + + modal.style.display = "block"; +} + +function closeChartSelector() { + document.getElementById("chartModal").style.display = "none"; +} + +function formatChartName(id) { + const map = { + trendChart: "Case Trend", + pathogenChart: "Pathogen Distribution", + provinceMap: "Geographic Distribution", + ageChart: "Age Distribution", + sexChart: "Sex Distribution", + subtypeChart: "Influenza Subtypes", + sentinelChart: "Sentinel Site Distribution", + sequencingTotalChart: "Sequencing Total", + covidLineageFrequency: "Covid Lineage Frequency", + influenzaSubtypeDistribution: "Influenza Subtype Frequency", + covidDistributedByAgeGroup: "Covid Cases by Age", + influenzaSubtypeFrequency: "Influenza Cases by Age", + + }; + + return map[id] || id; +} + +async function exportSelectedCharts() { + + const { jsPDF } = window.jspdf; + const pdf = new jsPDF("l", "mm", "a4"); + + const margin = 15; + const pageWidth = 297; + const pageHeight = 210; + + const contentTop = 35; + const contentHeight = pageHeight - contentTop - 10; + const contentWidth = pageWidth - margin * 2; + + const selected = document.querySelectorAll("#chartList input:checked"); + + const loadingDiv = document.createElement("div"); + Object.assign(loadingDiv.style, { + position: "fixed", + top: "50%", + left: "50%", + transform: "translate(-50%, -50%)", + background: "rgb(255, 255, 255)", + color: "#fff", + padding: "20px", + borderRadius: "10px", + zIndex: "10000" + }); + loadingDiv.innerHTML = "Generating PDF..."; + document.body.appendChild(loadingDiv); + + function drawHeader() { + pdf.setFillColor(255, 255, 255); + pdf.rect(0, 0, pageWidth, 30, "F"); + + pdf.setFontSize(18); + pdf.setFont(undefined, "bold"); + pdf.setTextColor(0); + pdf.text(getReportTitle(), margin, 14); + + pdf.setFontSize(9); + pdf.setTextColor(100); + pdf.text(`Generated: ${new Date().toLocaleString()}`, margin, 22); + + pdf.setDrawColor(220); + pdf.line(margin, 28, pageWidth - margin, 28); + } + + drawHeader(); + + const items = []; + + for (const cb of selected) { + if (cb.value === "provinceMap") { + loadingDiv.innerHTML = "Processing map..."; + const img = await getMapImage(); + + if (img) { + items.push({ + id: "provinceMap", + type: "map", + img + }); + } + } else { + const chart = charts[cb.value]; + if (!chart) continue; + + items.push({ + id: cb.value, + type: "chart", + chart + }); + } + } + + for (let i = 0; i < items.length; i++) { + const item = items[i]; + + loadingDiv.innerHTML = `Rendering ${formatChartName(item.id)} (${i + 1}/${items.length})`; + + if (i !== 0) { + pdf.addPage(); + drawHeader(); + } + + const cardX = margin; + const cardY = contentTop - 5; + const cardWidth = contentWidth; + const cardHeight = contentHeight; + + pdf.setFillColor(255, 255, 255); + pdf.roundedRect(cardX, cardY, cardWidth, cardHeight, 3, 3, "F"); + + pdf.setDrawColor(230); + pdf.roundedRect(cardX, cardY, cardWidth, cardHeight, 3, 3); + + pdf.setFontSize(13); + pdf.setFont(undefined, "bold"); + pdf.setTextColor(0); + pdf.text(formatChartName(item.id), cardX + 5, cardY + 8); + + let img; + let width; + let height; + + if (item.type === "map") { + img = item.img; + + width = cardWidth - 50; + height = width * 0.65; + + } else { + const canvas = item.chart.canvas; + + const scale = 4; + + const tempCanvas = document.createElement("canvas"); + + tempCanvas.width = canvas.width * scale; + tempCanvas.height = canvas.height * scale; + + const ctx = tempCanvas.getContext("2d"); + + ctx.scale(scale, scale); + + ctx.fillStyle = "#ffffff"; + ctx.fillRect(0, 0, canvas.width, canvas.height); + + ctx.drawImage(canvas, 0, 0); + + img = tempCanvas.toDataURL("image/jpeg", 0.95); + + const ratio = canvas.height / canvas.width; + + width = cardWidth - 10; + height = width * ratio; + + if (height > cardHeight - 20) { + height = cardHeight - 20; + width = height / ratio; + } + } + + const x = cardX + (cardWidth - width) / 2; + const contentTopOffset = 14; + const availableHeight = cardHeight - contentTopOffset; + + const y = cardY + contentTopOffset + (availableHeight - height) / 2; + + pdf.addImage(img, "PNG", x, y, width, height); + } + + document.body.removeChild(loadingDiv); + + pdf.save("dashboard_report.pdf"); + closeChartSelector(); +} +function prepareMapForExport() { + if (!window.map) return; + + const bounds = L.latLngBounds([ + [10.3, 102.3], + [14.7, 107.6] + ]); + + window.map.fitBounds(bounds); + +} +async function exportFullDashboard() { + const el = document.querySelector(".content-area"); + + const mapEl = document.getElementById("provinceMap"); + let originalMapHTML = null; + + if (mapEl) { + originalMapHTML = mapEl.innerHTML; + + const mapImg = await getMapImage(); + + if (mapImg) { + mapEl.innerHTML = ``; + } + } + prepareMapForExport(); + + await new Promise(resolve => setTimeout(resolve, 800)); + + const canvas = await html2canvas(el, { + scale: 4, + useCORS: true, + scrollY: -window.scrollY, + backgroundColor: "#ffffff" + }); + + if (mapEl && originalMapHTML !== null) { + mapEl.innerHTML = originalMapHTML; + window.map.invalidateSize(); + } + + const img = canvas.toDataURL("image/jpeg", 0.95); + + const { jsPDF } = window.jspdf; + const pdf = new jsPDF({ + orientation: "landscape", + unit: "mm", + format: "a4", + compress: true + }); + + const pageWidth = 297; + const pageHeight = 210; + + const ratio = Math.min( + pageWidth / canvas.width, + pageHeight / canvas.height + ); + + const imgWidth = canvas.width * ratio; + const imgHeight = canvas.height * ratio; + + const x = (pageWidth - imgWidth) / 2; + const y = (pageHeight - imgHeight) / 2; + + pdf.addImage(img, "JPEG", x, y, imgWidth, imgHeight); + pdf.save("full_dashboard.pdf"); + + closeChartSelector(); +} +function getColor(value) { + if (value > 50) return "#b91c1c"; + if (value >= 10) return "#ef4444"; + if (value > 0) return "#fecaca"; + return "#f3f4f600"; +} +async function getMapImage() { + const original = document.getElementById("provinceMap"); + if (!original) return null; + + const width = original.offsetWidth; + const height = original.offsetHeight; + + const canvas = document.createElement("canvas"); + canvas.width = width * 3; + canvas.height = height * 3; + + const ctx = canvas.getContext("2d"); + ctx.scale(3, 3); + + + ctx.fillStyle = "#ffffff"; + ctx.fillRect(0, 0, width, height); + + const zoom = window.map.getZoom(); + const projection = window.map.options.crs; + + const projectedRings = []; + + let minX = Infinity, minY = Infinity; + let maxX = -Infinity, maxY = -Infinity; + + const totals = {}; + const rows = window.latestProvinceData || []; + + rows.forEach(r => { + const province = window.normalizeProvince(r.patient_province, window.validProvinces); + if (!province) return; + + if (!totals[province]) { + totals[province] = { total: 0, positive: 0 }; + } + + totals[province].total += Number(r.total); + totals[province].positive += Number(r.positive); + }); + + function getColor(value) { + if (value > 50) return "#b91c1c"; + if (value >= 10) return "#ef4444"; + if (value > 0) return "#fecaca"; + return "#f3f4f600"; + } + + window.map.eachLayer(layer => { + if (!layer.toGeoJSON) return; + if (layer instanceof L.CircleMarker) { + + const latlng = layer.getLatLng(); + + const point = projection.latLngToPoint(latlng, zoom); + + minX = Math.min(minX, point.x); + maxX = Math.max(maxX, point.x); + minY = Math.min(minY, point.y); + maxY = Math.max(maxY, point.y); + + projectedRings.push({ + type: "circle", + x: point.x, + y: point.y, + radius: layer.getRadius(), + fillColor: layer.options.fillColor || "#000", + strokeColor: layer.options.color || "#000" + }); + + return; + } + + const geo = layer.toGeoJSON(); + + const features = geo.type === "FeatureCollection" + ? geo.features + : [geo]; + + features.forEach(f => { + if ( + !f.geometry || + !f.geometry.coordinates + ) return; + + const coords = f.geometry.coordinates; + + const polygons = f.geometry.type === "MultiPolygon" + ? coords + : [coords]; + + polygons.forEach(poly => { + + if (!Array.isArray(poly)) return; + + poly.forEach(ring => { + + if ( + !Array.isArray(ring) || + !Array.isArray(ring[0]) + ) { + return; + } + + const projected = ring.map(coord => { + + if (!Array.isArray(coord) || coord.length < 2) { + return null; + } + + const [lng, lat] = coord; + + const latlng = L.latLng(lat, lng); + const point = projection.latLngToPoint(latlng, zoom); + + minX = Math.min(minX, point.x); + maxX = Math.max(maxX, point.x); + minY = Math.min(minY, point.y); + maxY = Math.max(maxY, point.y); + + return [point.x, point.y]; + }).filter(Boolean); + + if (!projected.length) return; + + projectedRings.push({ + points: projected, + properties: f.properties || {} + }); + + }); + }); + }); + }); + + const padding = 10; + + const scaleX = (width - padding * 2) / (maxX - minX); + const scaleY = (height - padding * 2) / (maxY - minY); + const scale = Math.min(scaleX, scaleY); + + const offsetX = (width - (maxX - minX) * scale) / 2; + const offsetY = (height - (maxY - minY) * scale) / 2; + + projectedRings.forEach(item => { + + // ------------------------- + // Draw circle markers + // ------------------------- + if (item.type === "circle") { + + const drawX = (item.x - minX) * scale + offsetX; + const drawY = (item.y - minY) * scale + offsetY; + + ctx.beginPath(); + + ctx.arc( + drawX, + drawY, + item.radius, + 0, + Math.PI * 2 + ); + + ctx.fillStyle = item.fillColor; + ctx.fill(); + + ctx.strokeStyle = item.strokeColor; + ctx.lineWidth = 2; + ctx.stroke(); + + return; + } + + // ------------------------- + // Draw polygons + // ------------------------- + const { points, properties } = item; + + ctx.beginPath(); + + points.forEach(([x, y], i) => { + + const drawX = (x - minX) * scale + offsetX; + const drawY = (y - minY) * scale + offsetY; + + if (i === 0) ctx.moveTo(drawX, drawY); + else ctx.lineTo(drawX, drawY); + + }); + + ctx.closePath(); + + const province = properties.ADM1_EN; + const value = totals[province]?.total || 0; + + ctx.fillStyle = getColor(value); + ctx.fill(); + + ctx.strokeStyle = "#444"; + ctx.lineWidth = 1; + ctx.stroke(); + }); + + const legend = document.querySelector(".map-legend"); + + if (legend) { + const legendCanvas = await html2canvas(legend, { + scale: 3, + backgroundColor: null + }); + + const lw = legend.offsetWidth; + const lh = legend.offsetHeight; + + ctx.drawImage( + legendCanvas, + width - lw - 10, + height - lh - 10, + lw, + lh + ); + } + + return canvas.toDataURL("image/png"); +} +function getReportTitle() { + const program = window.PROGRAM_CODE || "Overview"; + + const rangeType = document.getElementById("trend_range")?.value; + + if (rangeType === "custom") { + const sy = document.getElementById("start_year")?.value; + const sw = document.getElementById("start_week")?.value; + const ey = document.getElementById("end_year")?.value; + const ew = document.getElementById("end_week")?.value; + + return `${program} Report (W${sw}/${sy} – W${ew}/${ey})`; + } + + return `${program} Report (Last ${rangeType} weeks)`; +} \ No newline at end of file diff --git a/dashboard/public/js/dashboard/filter.js b/dashboard/public/js/dashboard/filter.js new file mode 100644 index 0000000..3e83bf2 --- /dev/null +++ b/dashboard/public/js/dashboard/filter.js @@ -0,0 +1,131 @@ +class DashboardFilter { + + constructor(onChange) { + this.onChange = onChange; + + this.rangeSelect = document.getElementById("trend_range"); + this.startYear = document.getElementById("start_year"); + this.startWeek = document.getElementById("start_week"); + this.endYear = document.getElementById("end_year"); + this.endWeek = document.getElementById("end_week"); + this.customContainer = document.getElementById("custom_range_container"); + + if (!this.rangeSelect) return; + + this.init(); + } + + init() { + + this.populateFilters(); + + this.rangeSelect.addEventListener("change", () => { + + const val = this.rangeSelect.value; + + if (val === "custom") { + this.customContainer.style.display = "flex"; + return; + } + + this.customContainer.style.display = "none"; + + const range = this.lastWeeks(parseInt(val)); + + this.apply(range); + this.trigger(); + + }); + + ["start_year","start_week","end_year","end_week"].forEach(id => { + + const el = document.getElementById(id); + + if (el) el.addEventListener("change", ()=>this.trigger()); + + }); + + const defaultRange = this.lastWeeks(8); + + this.apply(defaultRange); + this.trigger(); + } + + trigger() { + + this.onChange( + this.startYear.value, + this.startWeek.value, + this.endYear.value, + this.endWeek.value + ); + + } + + apply(range) { + + this.startYear.value = range.startYear; + this.startWeek.value = range.startWeek; + this.endYear.value = range.endYear; + this.endWeek.value = range.endWeek; + + } + + populateFilters() { + + const year = new Date().getFullYear(); + + + for (let y = year; y >= year-20; y--) { + this.startYear.innerHTML += ``; + this.endYear.innerHTML += ``; + + } + + for (let w = 1; w <= 53; w++) { + + this.startWeek.innerHTML += ``; + this.endWeek.innerHTML += ``; + + } + + } + + getISOWeek(date) { + + const d = new Date(Date.UTC(date.getFullYear(),date.getMonth(),date.getDate())); + + d.setUTCDate(d.getUTCDate()+4-(d.getUTCDay()||7)); + + const yearStart = new Date(Date.UTC(d.getUTCFullYear(),0,1)); + + const week = Math.ceil((((d-yearStart)/86400000)+1)/7); + + return {year:d.getUTCFullYear(),week}; + + } + + lastWeeks(n) { + + const end = this.getISOWeek(new Date()); + + let startWeek = end.week-n+1; + let startYear = end.year; + + while(startWeek<=0){ + + startWeek += 52; + startYear--; + + } + + return { + startYear, + startWeek, + endYear:end.year, + endWeek:end.week + }; + + } + +} diff --git a/dashboard/public/js/globals.js b/dashboard/public/js/globals.js new file mode 100644 index 0000000..a69a102 --- /dev/null +++ b/dashboard/public/js/globals.js @@ -0,0 +1,61 @@ +export const COLORS = [ + + '#ef4444', + '#10b981', // emerald + '#f59e0b', // amber + '#ef4444', // red + '#8b5cf6', // violet + '#14b8a6', // teal + '#f97316', // orange + '#84cc16', // lime + '#e11dba', // fuchsia + '#f6f63b', // yellow + + '#0ea5e9', // sky + '#22c55e', // green + '#a855f7', // purple + '#ec4899', // pink + '#06b6d4', // cyan + '#65a30d', // olive + '#dc2626', // dark red + '#1d4ed8', // strong blue + '#7c3aed', // deep violet + '#059669', // dark emerald + '#c2410c', // burnt orange + '#be123c', // rose + '#4338ca', // indigo + '#0f766e', // dark teal + '#9333ea', // bright purple + '#15803d', // forest green + '#ea580c', // deep orange + '#0284c7', // ocean blue + '#ca8a04', // mustard + '#db2777' // magenta +]; +export const SUBTYPE_COLORS = { + 'A/H1N1pdm': '#f0d401', + 'A/H3N2': '#00ffff', + 'A/H9N2': '#2563eb', + 'A/H5N1': '#dc2626', + 'A/Unsubtypable': '#f455d7', + 'B/Yam': '#9333ea', + 'B/Vic': '#086037', + 'B/Unsubtypable': '#66ff00', + 'B/Victoria': '#9333ea', + 'H1N1pdm': '#f0d401', + 'H3N2': '#00ffff', + 'H9N2': '#2563eb', + 'J.2.4': '#8c6060', + 'K': '#55f49a', + 'Influenza': '#b90c00' +}; + +export const SURVEILLANCE_COLORS = { + 'LBM': '#f0d401', + 'ILI': '#2563eb', + 'SARI': '#dc2626', + 'NDS': '#9333ea', + 'AFI': '#086037', + 'SEQ': '#66ff00' +}; + diff --git a/dashboard/public/js/overview.js b/dashboard/public/js/overview.js new file mode 100644 index 0000000..941b834 --- /dev/null +++ b/dashboard/public/js/overview.js @@ -0,0 +1,1530 @@ +import { COLORS, SUBTYPE_COLORS, SURVEILLANCE_COLORS } from "./globals.js"; + +let trendChart; +let influenzaSubtypeChart; +let covidDistributedByAgeChart; +let covidLineageFrequencyChart; +let influenzaSubtypeFrequencyChart; +let map; +let subtypeLayers = {}; +let hiddenSubtypes = new Set(); + + +/* +|-------------------------------------------------------------------------- +| Load Summary Cards +|-------------------------------------------------------------------------- +*/ + +function loadSummary() { + fetch('/api/dashboard/summary') + .then(res => res.json()) + .then(data => { + + let html = ''; + const alerts = []; + + data.forEach(item => { + + let trendColor = 'text-secondary'; + + if (item.percent_change > 0) trendColor = 'text-danger'; + if (item.percent_change < 0) trendColor = 'text-success'; + + html += ` +
+
+
+ +
+ +
+
${item.code} Cases
+

${item.current_total}

+ Last 7 days +
+ +
+ +
+ ${item.percent_change > 0 ? '▲' : item.percent_change < 0 ? '▼' : '–'} + ${Math.abs(item.percent_change)}% +
+ + + ${item.previous_total ?? 0} last week + + +
+ +
+ +
+
+
+ `; + + window._summaryData = data; + updateAlerts(); + + }); + + document.getElementById('summary_cards').innerHTML = html; + + renderAlerts(alerts); + + }); +} + +/* +|-------------------------------------------------------------------------- +| Load Trend Chart +|-------------------------------------------------------------------------- +*/ + +function loadTrend(periodType, startYear, startWeek, endYear, endWeek) { + + fetch(`/api/dashboard/trend?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) + .then(res => res.json()) + .then(data => { + + if (trendChart) trendChart.destroy(); + const totalYears = endYear - startYear; + const useYearlyView = totalYears >= 5; + + // const labelsSet = new Set(); + + // Object.values(data).forEach(program => { + // program.forEach(row => { + // labelsSet.add(`${row.year}-${row.period}`); + // }); + // }); + + // const labels = Array.from(labelsSet).sort((a, b) => { + + // const [yearA, weekA] = a.split('-').map(Number); + // const [yearB, weekB] = b.split('-').map(Number); + + // if (yearA !== yearB) return yearA - yearB; + // return weekA - weekB; + + // }); + let labels = []; + + if (useYearlyView) { + + labels = [...new Set( + Object.values(data) + .flat() + .map(row => row.year) + )].sort((a, b) => a - b); + + } else { + + const labelsSet = new Set(); + + Object.values(data).forEach(program => { + program.forEach(row => { + labelsSet.add(`${row.year}-${row.period}`); + }); + }); + + labels = Array.from(labelsSet).sort((a, b) => { + + const [yearA, weekA] = a.split('-').map(Number); + const [yearB, weekB] = b.split('-').map(Number); + + if (yearA !== yearB) return yearA - yearB; + + return weekA - weekB; + + }); + + } + + + const datasets = []; + + const allowedPrograms = ['SARI', 'ILI', 'LBM', 'AFI', 'NDS']; + + Object.keys(data).forEach(code => { + + if (!allowedPrograms.includes(code)) return; + + // const values = labels.map(label => { + // const found = data[code].find(row => `${row.year}-${row.period}` === label); + // return found ? found.total : 0; + // }); + const values = labels.map(label => { + + if (useYearlyView) { + + return data[code] + .filter(row => row.year == label) + .reduce((sum, row) => sum + row.total, 0); + + } + + const found = data[code].find( + row => `${row.year}-${row.period}` === label + ); + + return found ? found.total : 0; + + }); + + datasets.push({ + label: code, + data: values, + borderColor: SURVEILLANCE_COLORS[code], + backgroundColor: SURVEILLANCE_COLORS[code], + borderWidth: 3, + pointRadius: 4, + maxBarThickness: 50, + fill: false, + tension: 0.3 + }); + + }); + + + + // const displayLabels = labels.map(l => { + // const [year, week] = l.split('-'); + // return `${year}-W${String(week).padStart(2, '0')}`; + // }); + + const displayLabels = useYearlyView + ? labels + : labels.map(l => { + const [year, week] = l.split('-'); + return `${year}-W${String(week).padStart(2, '0')}`; + }); + + trendChart = new Chart(document.getElementById('trendChart'), { + + type: 'line', + data: { + labels: displayLabels, + datasets: datasets + }, + options: { + responsive: true, + maintainAspectRatio: false, + + plugins: { + legend: { position: 'bottom' }, + datalabels: { + display: false + } + }, + interaction: { + mode: 'index', + intersect: false + }, + scales: { + y: { + beginAtZero: true, + + title: { + display: true, + text: 'Number of Cases' + }, + }, + x: { + + grid: { + display: false + }, + title: { + display: true, + text: 'Surveillance' + }, + } + } + } + }); + charts['trendChart'] = trendChart; + + }); +} +function loadInfluenzaSubtypeDistribution(periodType, startYear, startWeek, endYear, endWeek) { + + fetch(`/api/dashboard/influenza-subtype-distribution?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) + .then(res => res.json()) + .then(data => { + + let displayLabels = data.map(item => item.subtype); + let dataset = data.map(item => item.total); + + // const colors = displayLabels.map( + // label => SUBTYPE_COLORS[label] || '#9ca3af' + // ); + + if (influenzaSubtypeChart) influenzaSubtypeChart.destroy(); + influenzaSubtypeChart = new Chart(document.getElementById('influenzaSubtypeDistribution'), { + type: 'bar', + data: { + labels: displayLabels, + datasets: [{ + data: dataset, + backgroundColor: displayLabels.map( + label => SUBTYPE_COLORS[label] || '#9ca3af' + ), + }] + }, + options: { + layout: { + padding: { + top: 20, + right: 30, + bottom: 20 + } + }, + + indexAxis: 'y', + responsive: true, + maintainAspectRatio: false, + plugins: { + legend: { + display: false, + position: 'right' + }, + datalabels: { + color: '#000000', + borderRadius: 6, + z: 1000, + padding: { + top: 6, + bottom: 6, + }, + + font: { + weight: 'bold', + size: 12 + }, + formatter: (value) => value, + anchor: 'end', + align: 'end', + offset: 4, + clamp: true, + clip: false + } + }, + scales: { + x: { + stacked: true, + beginAtZero: true, + title: { + display: true, + text: 'Number of Positive Influenza Subtypes' + } + }, + y: { + stacked: true, + beginAtZero: true, + title: { + display: true, + text: 'Influenza Subtypes' + }, + grid: { + display: false + } + } + } + }, + plugins: [ChartDataLabels] + }); + charts['influenzaSubtypeDistribution'] = influenzaSubtypeChart; + + }); +} +function loadCovidDistributedByAgeGroup(periodType, startYear, startWeek, endYear, endWeek) { + + fetch(`/api/dashboard/covid-distributed-by-age-group?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) + .then(res => res.json()) + .then(data => { + + let displayLabels = data.map(item => item.age_group); + let dataset = data.map(item => item.total); + + + if (covidDistributedByAgeChart) covidDistributedByAgeChart.destroy(); + covidDistributedByAgeChart = new Chart(document.getElementById('covidDistributedByAgeGroup'), { + type: 'bar', + data: { + labels: displayLabels, + datasets: [{ + label: 'Total Covid-19 Detected', + data: dataset, + backgroundColor: COLORS, + maxBarThickness: 50 + }] + }, + options: { + layout: { + padding: { + top: 50, + bottom: 10, + } + }, + responsive: true, + maintainAspectRatio: false, + plugins: { + legend: { + display: false, + position: 'bottom' + }, + datalabels: { + color: '#000', + borderRadius: 6, + z: 1000, + padding: { + top: 6, + bottom: 6, + left: 10, + right: 10 + }, + font: { + weight: 'bold', + size: 12 + }, + formatter: (value) => value, + anchor: 'end', + align: 'end', + offset: 4, + clamp: true, + clip: false + } + }, + scales: { + x: { + stacked: true, + beginAtZero: true, + title: { + display: true, + text: 'Patient Age Group' + }, + grid: { + display: false + } + }, + y: { + stacked: true, + beginAtZero: true, + title: { + display: true, + text: 'Number of Positive SARS-CoV-2' + } + } + } + } + }); + charts['covidDistributedByAgeGroup'] = covidDistributedByAgeChart; + + }); +} +function loadCovidLineageFrequency(periodType, startYear, startWeek, endYear, endWeek) { + + fetch(`/api/dashboard/covid-lineage-frequency?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) + .then(res => res.json()) + .then(data => { + + // const weeks = [...new Set(data.map(item => item.week))].sort(); + const totalYears = endYear - startYear; + const useYearlyView = totalYears >= 5; + + let periods; + + if (useYearlyView) { + + periods = [...new Set( + data.map(item => item.week.split('-')[0]) + )].sort((a, b) => a - b); + + } else { + + periods = [...new Set( + data.map(item => item.week) + )].sort(); + + } + const lineages = [...new Set(data.map(item => item.lineage))]; + + + + const datasets = lineages.map((lineage, index) => { + // const lineageData = weeks.map(week => { + // const found = data.find( + // item => item.week === week && item.lineage === lineage + // ); + // return found ? found.total : 0; + // }); + + const lineageData = periods.map(period => { + + if (useYearlyView) { + + return data + .filter(item => + item.week.split('-')[0] == period && + item.lineage === lineage + ) + .reduce((sum, item) => sum + item.total, 0); + + } + + const found = data.find( + item => + item.week === period && + item.lineage === lineage + ); + + return found ? found.total : 0; + + }); + + return { + label: lineage, + data: lineageData, + fill: true, + tension: 0.4, + // borderColor: 'transparent', + borderWidth: 0, + pointRadius: 0, + backgroundColor: hexToRGBA(colors[index % colors.length], 0.3), + stack: 'total' + }; + }); + + if (covidLineageFrequencyChart) covidLineageFrequencyChart.destroy(); + + const ctx = document.getElementById('covidLineageFrequency').getContext('2d'); + + covidLineageFrequencyChart = new Chart(ctx, { + type: 'line', + data: { + labels: periods, + datasets: datasets + }, + options: { + responsive: true, + maintainAspectRatio: false, + interaction: { + mode: 'index', + intersect: false + }, + plugins: { + legend: { + display: false + }, + tooltip: { + mode: 'index', + intersect: false + }, + datalabels: { + display: false + } + }, + scales: { + x: { + stacked: true, + + grid: { + display: false + } + }, + y: { + stacked: true, + beginAtZero: true, + title: { + display: true, + text: 'Relative Frequency' + }, + } + } + } + }); + charts['covidLineageFrequency'] = covidLineageFrequencyChart; + + // ------------------------- + // Custom right-side scrollable legend + // ------------------------- + const legendContainer = document.getElementById('legendContainer'); + legendContainer.innerHTML = ''; + datasets.forEach((dataset, index) => { + const item = document.createElement('div'); + item.style.display = 'flex'; + item.style.alignItems = 'center'; + item.style.marginBottom = '4px'; + item.style.fontSize = '11px'; + item.style.cursor = 'pointer'; + item.innerHTML = ` + + ${dataset.label} + `; + + item.addEventListener('click', () => { + const meta = covidLineageFrequencyChart.getDatasetMeta(index); + + const allHidden = datasets.every((d, i) => covidLineageFrequencyChart.getDatasetMeta(i).hidden || i === index); + if (!allHidden) { + datasets.forEach((d, i) => { + covidLineageFrequencyChart.getDatasetMeta(i).hidden = true; + }); + meta.hidden = false; + } else { + datasets.forEach((d, i) => { + covidLineageFrequencyChart.getDatasetMeta(i).hidden = false; + }); + } + + covidLineageFrequencyChart.update(); + + Array.from(legendContainer.children).forEach((child, i) => { + const metaItem = covidLineageFrequencyChart.getDatasetMeta(i); + child.style.opacity = metaItem.hidden ? 0.5 : 1; + }); + }); + + legendContainer.appendChild(item); + }); + + legendContainer.style.maxHeight = '375px'; + legendContainer.style.overflowY = 'auto'; + legendContainer.style.padding = '8px'; + legendContainer.style.borderRadius = '0px'; + }); +} +function loadInfluenzaSubtypeFrequency(periodType, startYear, startWeek, endYear, endWeek) { + + fetch(`/api/dashboard/influenza-relative-frequency?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) + .then(res => res.json()) + .then(data => { + + const totalYears = endYear - startYear; + const useYearlyView = totalYears >= 5; + + let periods; + + if (useYearlyView) { + + periods = [...new Set( + data.map(item => item.week.split('-')[0]) + )].sort((a, b) => a - b); + + } else { + + periods = [...new Set( + data.map(item => item.week) + )].sort(); + + } + + const lineages = [...new Set( + data.map(item => item.lineage) + )]; + + const lineageColors = lineages.map( + label => SUBTYPE_COLORS[label] || '#9ca3af' + ); + + const datasets = lineages.map((lineage, index) => { + + const lineageData = periods.map(period => { + + if (useYearlyView) { + + return data + .filter(item => + item.week.split('-')[0] == period && + item.lineage === lineage + ) + .reduce((sum, item) => sum + item.total, 0); + + } + + const found = data.find( + item => + item.week === period && + item.lineage === lineage + ); + + return found ? found.total : 0; + + }); + + return { + label: lineage, + data: lineageData, + fill: true, + tension: 0.4, + borderWidth: 0, + pointRadius: 0, + backgroundColor: hexToRGBA( + lineageColors[index % lineageColors.length], + 0.6 + ), + stack: 'total' + }; + + }); + + if (influenzaSubtypeFrequencyChart) { + influenzaSubtypeFrequencyChart.destroy(); + } + + const ctx = document + .getElementById('influenzaSubtypeFrequency') + .getContext('2d'); + + influenzaSubtypeFrequencyChart = new Chart(ctx, { + + type: 'line', + + data: { + labels: periods, + datasets: datasets + }, + + options: { + + responsive: true, + maintainAspectRatio: false, + + interaction: { + mode: 'index', + intersect: false + }, + + plugins: { + + legend: { + display: false + }, + + tooltip: { + mode: 'index', + intersect: false + }, + + datalabels: { + display: false + } + + }, + + scales: { + + x: { + + stacked: true, + + + + grid: { + display: false + } + + }, + + y: { + + stacked: true, + + beginAtZero: true, + + title: { + display: true, + text: 'Relative Frequency' + } + + } + + } + + } + + }); + + charts['influenzaSubtypeFrequency'] = + influenzaSubtypeFrequencyChart; + + /* + |-------------------------------------------------------------------------- + | CUSTOM LEGEND + |-------------------------------------------------------------------------- + */ + + const legendContainer = + document.getElementById( + 'legendContainerInfluenzaSubtypeFrequency' + ); + + legendContainer.innerHTML = ''; + + datasets.forEach((dataset, index) => { + + const item = document.createElement('div'); + + item.style.display = 'flex'; + item.style.alignItems = 'center'; + item.style.marginBottom = '4px'; + item.style.fontSize = '11px'; + item.style.cursor = 'pointer'; + + item.innerHTML = ` + + ${dataset.label} + `; + + item.addEventListener('click', () => { + + const meta = + influenzaSubtypeFrequencyChart + .getDatasetMeta(index); + + const allHidden = datasets.every( + (d, i) => + influenzaSubtypeFrequencyChart + .getDatasetMeta(i).hidden || + i === index + ); + + if (!allHidden) { + + datasets.forEach((d, i) => { + + influenzaSubtypeFrequencyChart + .getDatasetMeta(i) + .hidden = true; + + }); + + meta.hidden = false; + + } else { + + datasets.forEach((d, i) => { + + influenzaSubtypeFrequencyChart + .getDatasetMeta(i) + .hidden = false; + + }); + + } + + influenzaSubtypeFrequencyChart.update(); + + Array.from(legendContainer.children) + .forEach((child, i) => { + + const metaItem = + influenzaSubtypeFrequencyChart + .getDatasetMeta(i); + + child.style.opacity = + metaItem.hidden ? 0.5 : 1; + + }); + + }); + + legendContainer.appendChild(item); + + }); + + legendContainer.style.maxHeight = '375px'; + legendContainer.style.overflowY = 'auto'; + legendContainer.style.padding = '8px'; + legendContainer.style.borderRadius = '0px'; + + }); + +} +function hexToRGBA(hex, alpha) { + const r = parseInt(hex.slice(1, 3), 16); + const g = parseInt(hex.slice(3, 5), 16); + const b = parseInt(hex.slice(5, 7), 16); + return `rgba(${r}, ${g}, ${b}, ${alpha})`; +} +function updateAlerts() { + + if (!window._summaryData || !window._provinceData) return; + + const raw = buildAlerts(window._summaryData, window._provinceData); + const finalAlerts = processAlerts(raw); + + renderAlerts(finalAlerts); +} +function generateAlerts(data) { + + const alerts = []; + + + const summary = data.summary || {}; + + const programs = [ + { key: 'influenza_rate', label: 'Influenza' }, + { key: 'covid_rate', label: 'COVID-19' }, + { key: 'positivity_rate', label: 'Overall positivity' } + ]; + + programs.forEach(p => { + const current = summary[p.key]?.current || 0; + const previous = summary[p.key]?.previous || 0; + + const diff = previous ? ((current - previous) / previous) * 100 : 0; + + if (current >= 15) { + alerts.push(`🔴 High ${p.label} (${current}%)`); + } else if (current >= 10) { + alerts.push(`🟠 Moderate ${p.label} (${current}%)`); + } + + if (diff >= 10) { + alerts.push(`🟡 Increasing ${p.label} (+${diff.toFixed(1)}%)`); + } + }); + + // ------------------------- + // 2. Province-level alerts + // ------------------------- + const provinces = data.province_distribution || []; + + const top = [...provinces] + .sort((a, b) => b.total - a.total) + .slice(0, 3); + + top.forEach(p => { + + const percent = p.total + ? ((p.positive / p.total) * 100) + : 0; + + if (percent >= 15) { + alerts.push(`🔴 High positivity in ${p.patient_province} (${percent.toFixed(1)}%)`); + } else if (percent >= 10) { + alerts.push(`🟠 Moderate positivity in ${p.patient_province}`); + } + + if (p.total >= 50) { + alerts.push(`🟡 High case volume in ${p.patient_province} (${p.total})`); + } + }); + + // ------------------------- + // fallback + // ------------------------- + if (!alerts.length) { + alerts.push("🟢 No unusual activity detected"); + } + + return alerts; +} +function createAlert(type, message, priority) { + return { type, message, priority }; +} +function buildAlerts(summaryData, provinceData) { + + const alerts = []; + + + summaryData.forEach(item => { + + if (item.current_total >= 80) { + alerts.push(createAlert( + 'high', + `High ${item.code} activity (${item.current_total} cases)`, + 1 + )); + } + + // 🟠 Moderate + else if (item.current_total >= 40) { + alerts.push(createAlert( + 'moderate', + `${item.code} activity elevated (${item.current_total})`, + 2 + )); + } + + // 🟡 Increasing trend + if (item.percent_change >= 10) { + alerts.push(createAlert( + 'trend', + `Increasing ${item.code} (+${item.percent_change}%)`, + 3 + )); + } + + }); + + // ------------------------- + // 2. Province alerts + // ------------------------- + const top = [...provinceData] + .sort((a, b) => b.total - a.total) + .slice(0, 5); + + top.forEach(p => { + + const percent = p.total + ? ((p.positive / p.total) * 100) + : 0; + + // 🔴 High positivity + if (percent >= 15) { + alerts.push(createAlert( + 'high', + `High positivity in ${p.patient_province} (${percent.toFixed(1)}%)`, + 1 + )); + } + + // 🟠 Moderate positivity + else if (percent >= 10) { + alerts.push(createAlert( + 'moderate', + `Moderate positivity in ${p.patient_province}`, + 2 + )); + } + + // 🟡 High volume + if (p.total >= 50) { + alerts.push(createAlert( + 'volume', + `High case volume in ${p.patient_province} (${p.total})`, + 3 + )); + } + + }); + + return alerts; +} +function processAlerts(alerts) { + + const seen = new Set(); + + const unique = alerts.filter(a => { + if (seen.has(a.message)) return false; + seen.add(a.message); + return true; + }); + + // sort by priority + unique.sort((a, b) => a.priority - b.priority); + + // limit to top 5 + return unique.slice(0, 5); +} +function renderAlerts(alerts) { + + const container = document.getElementById('alertsList'); + if (!container) return; + + if (!alerts.length) { + container.innerHTML = ` +
  • + 🟢 No unusual activity detected +
  • + `; + return; + } + + const colorMap = { + high: 'text-danger', + moderate: 'text-warning', + trend: 'text-primary', + volume: 'text-secondary' + }; + + container.innerHTML = alerts.map(a => ` +
  • + ${a.type === 'high' ? '🔴' : + a.type === 'moderate' ? '🟠' : + a.type === 'trend' ? '🟡' : + '🔵'} + ${a.message} +
  • + `).join(''); +} +function normalizeProvince(name, validSet) { + if (!name || !validSet) return null; + + const clean = str => + str.toLowerCase().replace(/\s+/g, ''); + + const raw = name.trim(); + + const map = { + "kepville": "Kep", + "sihanoukville": "Preah Sihanouk", + "sihanoukvillecity": "Preah Sihanouk", + "krongpailin": "Pailin", + "mondulkiri": "Mondulkiri", + "odormeanchey": "Oddar Meanchey", + "tbongkhmom": "Tboung Khmum", + "tboungkhmum": "Tboung Khmum", + "rattanakiri": "Ratanak Kiri" + }; + + const key = clean(raw); + + if (map[key] && validSet.has(map[key])) { + return map[key]; + } + + const match = [...validSet].find(p => clean(p) === key); + + return match || null; +} +function getRadius(total) { + if (!total) return 0; + const r = Math.sqrt(total); + return Math.max(4, Math.min(r * 2, 22)); +} + +function getPositivityColor(subtype) { + return SUBTYPE_COLORS[subtype] || "#9ca3af"; +} +const getColorByPathogen = name => + SUBTYPE_COLORS[name] || '#9ca3af'; + +function addPositivityLegend() { + + const legend = L.control({ + position: "bottomleft" + }); + + legend.onAdd = function () { + + const div = L.DomUtil.create( + "div", + "map-legend" + ); + + const items = Object.keys(subtypeLayers) + .filter(subtype => { + + const layer = subtypeLayers[subtype]; + + return layer && + layer.getLayers().length > 0; + + }); + div.innerHTML = ` +
    + +
    + Influenza Subtypes +
    + + ${items.map(item => ` + +
    + + + + + ${item} + + +
    + + `).join('')} + +
    + `; + + setTimeout(() => { + + div.querySelectorAll('.legend-item') + .forEach(el => { + + el.addEventListener('click', () => { + + const subtype = + el.dataset.subtype; + + const layer = + subtypeLayers[subtype]; + + if (!layer) return; + + if (hiddenSubtypes.has(subtype)) { + + hiddenSubtypes.delete(subtype); + + map.addLayer(layer); + + el.style.opacity = 1; + + } else { + + hiddenSubtypes.add(subtype); + + map.removeLayer(layer); + + el.style.opacity = 0.35; + + } + + }); + + }); + + }, 0); + + return div; + }; + + legend.addTo(map); + +} +function loadProvinceMap( + startYear, + startWeek, + endYear, + endWeek +) { + + if (map) map.remove(); + + subtypeLayers = {}; + hiddenSubtypes = new Set(); + + map = L.map('provinceMap') + .setView([12.7, 104.9], 7); + + window.map = map; + + L.tileLayer( + 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', + { + attribution: '© OpenStreetMap' + } + ).addTo(map); + + Promise.all([ + + fetch('/geo/cambodia_provinces.geojson') + .then(r => r.json()), + + fetch( + `/api/dashboard/province-circles?start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}` + ).then(r => r.json()) + + ]) + .then(([geojson, data]) => { + + window._provinceData = data; + + updateAlerts(); + + const validProvinces = new Set( + geojson.features.map( + f => f.properties.ADM1_EN + ) + ); + + Object.keys(SUBTYPE_COLORS) + .forEach(subtype => { + + subtypeLayers[subtype] = + L.layerGroup().addTo(map); + + }); + + + L.geoJSON(geojson, { + + style: { + fillOpacity: 0.05, + fillColor: '#2563eb', + color: '#bbb', + weight: 1 + }, + + onEachFeature: function ( + feature, + layer + ) { + + const province = + feature.properties.ADM1_EN; + + const center = + layer.getBounds().getCenter(); + + const rows = data.filter(d => { + + const name = + normalizeProvince( + d.patient_province, + validProvinces + ); + + return name === province; + + }); + + if (!rows.length) return; + const tooltipHTML = ` +
    + +
    + ${province} +
    + + ${rows.map(r => ` + +
    + + + ${r.pathogen_name} + + + + ${r.total} + + +
    + + `).join('')} + +
    + `; + layer.bindTooltip( + tooltipHTML, + { + sticky: true, + direction: 'top' + } + ); + layer.on({ + + mouseover: function (e) { + + e.target.setStyle({ + fillOpacity: 0.15, + weight: 2, + color: '#666' + }); + + }, + + mouseout: function (e) { + + e.target.setStyle({ + fillOpacity: 0.05, + weight: 1, + color: '#bbb' + }); + + } + + }); + const pathogens = [ + ...new Set( + rows.map( + r => r.pathogen_name + ) + ) + ]; + + const spacing = 0.12; + + rows.forEach(row => { + + const index = + pathogens.indexOf(row.pathogen_name); + + const cols = 3; + + const col = index % cols; + const rowIndex = Math.floor(index / cols); + + const xOffset = + (col - (cols - 1) / 2) * spacing; + + const yOffset = + rowIndex * spacing; + + const lat = + center.lat + yOffset; + + const lng = + center.lng + xOffset; + + const marker = L.circleMarker( + [lat, lng], + { + radius: getRadius(row.total), + fillColor: getColorByPathogen( + row.pathogen_name + ), + fillOpacity: 0.85, + stroke: false + } + ); + + if (subtypeLayers[row.pathogen_name]) { + marker.addTo( + subtypeLayers[ + row.pathogen_name + ] + ); + + } + + }); + + } + + }).addTo(map); + addPositivityLegend(); + + }); + +} + + +document.addEventListener("DOMContentLoaded", () => { + + loadSummary(); + + new DashboardFilter((startYear, startWeek, endYear, endWeek) => { + + loadTrend('week', startYear, startWeek, endYear, endWeek); + loadInfluenzaSubtypeDistribution('week', startYear, startWeek, endYear, endWeek); + loadCovidDistributedByAgeGroup('week', startYear, startWeek, endYear, endWeek); + loadInfluenzaSubtypeFrequency('week', startYear, startWeek, endYear, endWeek); + loadCovidLineageFrequency('week', startYear, startWeek, endYear, endWeek); + loadProvinceMap(startYear, startWeek, endYear, endWeek); + + const elements = document.querySelectorAll(".report-period"); + + elements.forEach(el => { + el.textContent = + 'Week ' + startWeek + ' of ' + startYear + + ' to Week ' + endWeek + ' of ' + endYear; + }); + + }); + + + let currentSlide = 0; + + const slides = document.querySelectorAll('.slide'); + const nextBtn = document.querySelector('.next-btn'); + const prevBtn = document.querySelector('.prev-btn'); + + function showSlide(index) { + + slides.forEach((slide, i) => { + + slide.classList.remove('active', 'prev'); + + if (i === index) { + + slide.classList.add('active'); + + setTimeout(() => { + + if (typeof map !== 'undefined' && map) { + map.invalidateSize(); + } + + }, 300); + + } else if (i === index - 1) { + + slide.classList.add('prev'); + + } + + }); + + } + + function nextSlide() { + + currentSlide = (currentSlide + 1) % slides.length; + showSlide(currentSlide); + + } + + function prevSlide() { + + currentSlide = + (currentSlide - 1 + slides.length) % slides.length; + + showSlide(currentSlide); + + } + + if (nextBtn) { + nextBtn.addEventListener('click', nextSlide); + } + + if (prevBtn) { + prevBtn.addEventListener('click', prevSlide); + } + + const slideInterval = 2 * (15 * 1000); + + setInterval(nextSlide, slideInterval); + + showSlide(currentSlide); + +}); diff --git a/dashboard/public/js/program.js b/dashboard/public/js/program.js new file mode 100644 index 0000000..49694b1 --- /dev/null +++ b/dashboard/public/js/program.js @@ -0,0 +1,1011 @@ +import { COLORS, SUBTYPE_COLORS, } from "./globals.js"; +const standardPrograms = ['SARI', 'ILI', 'LBM', 'AFI', 'NDS']; +const programCode = (window.PROGRAM_CODE || '').trim().toUpperCase(); + +let map; + +document.addEventListener("DOMContentLoaded", () => { + + if (!standardPrograms.includes(programCode)) return; + + new DashboardFilter((startYear, startWeek, endYear, endWeek) => { + + document.querySelectorAll(".report-period") + .forEach(el => { + el.textContent = + `Week ${startWeek} of ${startYear} to Week ${endWeek} of ${endYear}`; + }); + + fetch( + `/api/dashboard/program?surveillance_id=${window.SURVEILLANCE_ID}` + + `&start_year=${startYear}&start_week=${startWeek}` + + `&end_year=${endYear}&end_week=${endWeek}` + ) + .then(res => res.json()) + .then(programCode === 'AFI' + ? renderAFIDashboard + : renderDashboard + ) + .catch(err => console.error("Dashboard API error:", err)); + + }); + +}); +function buildDistributionChart( + id, + type, + rows, + labelKey, + valueKey = 'total', + colorResolver = null +) { + + const labels = rows.map(r => r[labelKey]); + buildChart( + id, + type, + labels, + rows.map(r => r[valueKey]) + ); + + if (!charts[id]) return; + + charts[id].data.datasets[0].backgroundColor = labels.map( + (label, index) => + colorResolver + ? colorResolver(label, index) + : COLORS[index % COLORS.length] + ); + + charts[id].update(); +} +function renderTrend(valueId, changeId, current, previous, suffix = '') { + + const valueEl = document.getElementById(valueId); + const changeEl = document.getElementById(changeId); + + if (!valueEl || !changeEl) return; + + valueEl.textContent = current + suffix; + + if (!previous) { + changeEl.innerHTML = "— No previous data"; + changeEl.className = "text-muted"; + return; + } + + const diff = current - previous; + const percent = ((diff / previous) * 100).toFixed(1); + + if (diff > 0) { + changeEl.innerHTML = `↑ +${percent}% from previous week`; + changeEl.className = "text-success"; + } + else if (diff < 0) { + changeEl.innerHTML = `↓ ${percent}% from previous week`; + changeEl.className = "text-danger"; + } + else { + changeEl.innerHTML = "— No significant change"; + changeEl.className = "text-muted"; + } +} +function getSubtypeColor(label, index = 0) { + + const specialColors = { + 'A/H5N1': '#dc2626', + 'Influenza': '#b90c00' + }; + + return specialColors[label] + || COLORS[index % COLORS.length]; +} +function renderSummary(summary = {}) { + + const mappings = [ + ['totalCases', 'casesChange', summary.cases], + ['influenzaRate', 'influenzaChange', summary.influenza_rate, '%'], + ['covidRate', 'covidChange', summary.covid_rate, '%'], + ['hospitalRate', 'hospitalChange', summary.hospital_rate, '%'], + ['icuRate', 'icuChange', summary.icu_rate, '%'], + ['positivityRate', 'positivityChange', summary.positivity_rate, '%'] + ]; + + mappings.forEach(([valueId, changeId, data = {}, suffix = '']) => { + renderTrend( + valueId, + changeId, + data.current || 0, + data.previous || 0, + suffix + ); + }); +} +function renderDashboard(data = {}) { + + renderProgramTrend(data.trend || []); + renderSummary(data.summary); + renderProvinceHeatmap(data.province_distribution || []); + + buildDistributionChart( + 'pathogenChart', + 'doughnut', + (data.pathogen_distribution || []) + .sort((a, b) => b.total - a.total), + 'pathogen', + 'total', + getSubtypeColor + + ); + + buildDistributionChart( + 'ageChart', + 'doughnut', + data.age_distribution || [], + 'age_group' + ); + + buildDistributionChart( + 'sexChart', + 'bar', + data.sex_distribution || [], + 'patient_sex' + ); + + buildDistributionChart( + 'subtypeChart', + 'bar', + data.subtype_distribution || [], + 'subtype', + 'total', + getSubtypeColor + ); + + buildDistributionChart( + 'sentinelChart', + 'pie', + data.sentinel_sites || [], + 'name' + ); + + +} +function renderAFIDashboard(data = {}) { + + const trend = data.afi_trend || {}; + const positivity = data.afi_case_trend || {}; + + renderAFITrend( + data.afi_case_trend.section_1, + 'afiSection1Trend', + COLORS, + 'trend' + ); + + renderAFITrend( + data.afi_case_trend.section_2, + 'afiSection2Trend', + COLORS, + 'trend' + ); + + renderAFITrend( + data.afi_case_trend.section_3, + 'afiSection3Trend', + COLORS, + 'trend' + ); + + // DOUGHNUTS + renderAFITrend( + data.afi_case_trend.section_1, + 'afiPcrChart', + COLORS, + 'donut' + ); + + renderAFITrend( + data.afi_case_trend.section_2, + 'afiMultiplexChart', + COLORS, + 'donut' + ); + + renderAFITrend( + data.afi_case_trend.section_3, + 'afiElisaChart', + COLORS, + 'donut' + ); + + + renderSummary(data.summary); + renderProvinceHeatmap(data.province_distribution); + renderDemographics(data); + renderPathogenChart(data.pathogen_distribution || []); + renderSentinel(data.sentinel_sites || []); + renderSubtypeChart(data.subtype_distribution || []); +} +function normalizeProvince(name, validSet) { + + if (!name || !validSet) return null; + + const clean = str => + str.toLowerCase().replace(/\s+/g, ''); + + const raw = name.trim(); + + const provinceMap = { + "kepville": "Kep", + "sihanoukville": "Preah Sihanouk", + "sihanoukvillecity": "Preah Sihanouk", + "krongpailin": "Pailin", + "mondulkiri": "Mondulkiri", + "odormeanchey": "Oddar Meanchey", + "tbongkhmom": "Tboung Khmum", + "tboungkhmum": "Tboung Khmum", + "rattanakiri": "Ratanak Kiri" + }; + + const key = clean(raw); + + if (provinceMap[key] && validSet.has(provinceMap[key])) { + return provinceMap[key]; + } + + const match = [...validSet] + .find(p => clean(p) === key); + + return match || null; +} +window.normalizeProvince = normalizeProvince; + +function renderProvinceHeatmap(rows = []) { + + window.latestProvinceData = rows; + + if (map) { + map.remove(); + } + + map = L.map('provinceMap') + .setView([12.7, 104.9], 7); + window.map = map; + L.tileLayer( + 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', + { + attribution: '© OpenStreetMap contributors' + } + ).addTo(map); + + addProvinceLegend(); + + fetch('/geo/cambodia_provinces.geojson') + .then(r => r.json()) + .then(geo => { + + const validProvinces = new Set( + geo.features.map(f => f.properties.ADM1_EN) + ); + + window.validProvinces = validProvinces; + + const totals = {}; + + rows.forEach(r => { + + const province = normalizeProvince( + r.patient_province, + validProvinces + ); + + if (!province) return; + + totals[province] ??= { + total: 0, + positive: 0 + }; + + totals[province].total += Number(r.total || 0); + totals[province].positive += Number(r.positive || 0); + + }); + + const getColor = value => { + + if (value > 50) return "#b91c1c"; + if (value >= 10) return "#ef4444"; + if (value > 0) return "#fecaca"; + + return "#f3f4f600"; + }; + + window.provinceLayer = L.geoJSON(geo, { + + style: feature => { + + const province = + feature.properties.ADM1_EN; + + const value = + totals[province]?.total || 0; + + return { + color: "#444", + weight: 1.5, + fillColor: getColor(value), + fillOpacity: 0.8 + }; + }, + + onEachFeature: (feature, layer) => { + + const province = + feature.properties.ADM1_EN; + + const total = + totals[province]?.total || 0; + + const positive = + totals[province]?.positive || 0; + + const percent = total + ? ((positive / total) * 100).toFixed(1) + : 0; + + layer.bindTooltip(` + ${province}
    + Total: ${total}
    + Positivity: ${percent}% + `); + + } + + }).addTo(map); + + }); + +} +function addProvinceLegend() { + + const legend = L.control({ + position: "bottomright" + }); + + legend.onAdd = function () { + + const div = L.DomUtil.create( + "div", + "map-legend" + ); + + div.innerHTML = ` +
    + +
    + Cases +
    + +
    + + > 50 +
    + +
    + + 10 – 50 +
    + +
    + + 1 – 9 +
    + +
    + + 0 +
    + +
    + `; + + return div; + }; + + legend.addTo(map); +} +function renderProgramTrend(rows = []) { + + if (!rows.length) { + + buildMixedTrendChart( + 'trendChart', + [], + [], + [] + ); + + return; + } + + /* + |-------------------------------------------------------------------------- + | YEARLY VIEW + |-------------------------------------------------------------------------- + */ + + const years = [...new Set( + rows.map(r => Number(r.year)) + )]; + + const totalYears = + Math.max(...years) - Math.min(...years); + + const useYearlyView = + totalYears >= 5; + + /* + |-------------------------------------------------------------------------- + | LABELS + |-------------------------------------------------------------------------- + */ + + let labels; + + if (useYearlyView) { + + labels = [...new Set( + rows.map(r => String(r.year)) + )].sort(); + + } else { + + labels = [...new Set( + rows.map(r => + `${r.year}-W${r.period}` + ) + )].sort((a, b) => { + + const [yearA, weekA] = + a.split('-W').map(Number); + + const [yearB, weekB] = + b.split('-W').map(Number); + + if (yearA !== yearB) { + return yearA - yearB; + } + + return weekA - weekB; + + }); + + } + + /* + |-------------------------------------------------------------------------- + | TOTAL SAMPLES + |-------------------------------------------------------------------------- + */ + + const samples = labels.map(label => { + + if (useYearlyView) { + + return rows + .filter(r => + String(r.year) === label + ) + .reduce( + (sum, r) => + sum + Number(r.total_samples || 0), + 0 + ); + + } + + const row = rows.find(r => + `${r.year}-W${r.period}` === label + ); + + return row?.total_samples || 0; + + }); + + /* + |-------------------------------------------------------------------------- + | LINES + |-------------------------------------------------------------------------- + */ + + const lines = [ + + { + label: 'Influenza %', + + data: labels.map(label => { + + if (useYearlyView) { + + const filtered = rows.filter(r => + String(r.year) === label + ); + + const total = + filtered.reduce( + (sum, r) => + sum + Number(r.influenza_rate || 0), + 0 + ); + + return filtered.length + ? total / filtered.length + : 0; + } + + const row = rows.find(r => + `${r.year}-W${r.period}` === label + ); + + return row?.influenza_rate || 0; + + }), + + color: '#d21919' + }, + + { + label: 'COVID-19 %', + + data: labels.map(label => { + + if (useYearlyView) { + + const filtered = rows.filter(r => + String(r.year) === label + ); + + const total = + filtered.reduce( + (sum, r) => + sum + Number(r.covid_rate || 0), + 0 + ); + + return filtered.length + ? total / filtered.length + : 0; + } + + const row = rows.find(r => + `${r.year}-W${r.period}` === label + ); + + return row?.covid_rate || 0; + + }), + + color: '#10b981' + } + + ]; + + /* + |-------------------------------------------------------------------------- + | NDS EXTRA LINES + |-------------------------------------------------------------------------- + */ + + if (programCode === 'NDS') { + + lines.push( + + { + label: 'EV %', + + data: labels.map(label => { + + if (useYearlyView) { + + const filtered = rows.filter(r => + String(r.year) === label + ); + + const total = + filtered.reduce( + (sum, r) => + sum + Number(r.ev_rate || 0), + 0 + ); + + return filtered.length + ? total / filtered.length + : 0; + } + + const row = rows.find(r => + `${r.year}-W${r.period}` === label + ); + + return row?.ev_rate || 0; + + }), + + color: '#f59e0b' + }, + + { + label: 'Mpox %', + + data: labels.map(label => { + + if (useYearlyView) { + + const filtered = rows.filter(r => + String(r.year) === label + ); + + const total = + filtered.reduce( + (sum, r) => + sum + Number(r.mpox_rate || 0), + 0 + ); + + return filtered.length + ? total / filtered.length + : 0; + } + + const row = rows.find(r => + `${r.year}-W${r.period}` === label + ); + + return row?.mpox_rate || 0; + + }), + + color: '#8b5cf6' + } + + ); + + } + + buildMixedTrendChart( + 'trendChart', + labels, + samples, + lines + ); + +} + +function renderAFITrend( + data = {}, + canvasId, + COLORS, + type = 'trend' +) { + + /* + |-------------------------------------------------------------------------- + | DATA + |-------------------------------------------------------------------------- + */ + + const rows = + data.rows || []; + + const totals = + data.totals || []; + + /* + |-------------------------------------------------------------------------- + | EMPTY + |-------------------------------------------------------------------------- + */ + + if (!totals.length) { + + if (type === 'donut') { + + buildDistributionChart( + canvasId, + 'doughnut', + [], + 'pathogen', + 'total' + ); + + } else { + + buildMixedTrendChart( + canvasId, + [], + [], + [] + ); + + } + + return; + } + + /* + |-------------------------------------------------------------------------- + | LABELS + |-------------------------------------------------------------------------- + */ + + const labels = [...new Set( + + totals.map(r => + + `${r.year}-W${r.period}` + + ) + + )].sort((a, b) => { + + const [yearA, weekA] = + a.split('-W').map(Number); + + const [yearB, weekB] = + b.split('-W').map(Number); + + if (yearA !== yearB) { + return yearA - yearB; + } + + return weekA - weekB; + + }); + + /* + |-------------------------------------------------------------------------- + | TOTAL CASES (BLUE BARS) + |-------------------------------------------------------------------------- + */ + + const totalCases = labels.map(label => { + + const row = totals.find(r => + + `${r.year}-W${r.period}` + === label + + ); + + return Number( + row?.total_cases || 0 + ); + + }); + + /* + |-------------------------------------------------------------------------- + | DONUT + |-------------------------------------------------------------------------- + */ + + if (type === 'donut') { + + const grouped = {}; + + rows.forEach(r => { + + const pathogen = + r.pathogen || 'Unknown'; + + grouped[pathogen] ??= 0; + + grouped[pathogen] += + Number(r.total_positive || 0); + + }); + + const donutRows = + + Object.entries(grouped) + + .map(([pathogen, total]) => ({ + pathogen, + total + })); + + buildDistributionChart( + canvasId, + 'doughnut', + donutRows, + 'pathogen', + 'total' + ); + + /* + |-------------------------------------------------------------------------- + | DONUT CENTER TOTAL + |-------------------------------------------------------------------------- + | + | MUST MATCH SUM OF BLUE BARS + | + */ + + const donutTotal = + + totalCases.reduce( + (a, b) => a + b, + 0 + ); + + if (charts[canvasId]) { + + charts[canvasId].$afiTotalCases = + donutTotal; + + charts[canvasId].update(); + + } + + return; + } + + /* + |-------------------------------------------------------------------------- + | PATHOGENS + |-------------------------------------------------------------------------- + */ + + const pathogens = [ + + ...new Set( + rows.map(r => r.pathogen) + ) + + ]; + + /* + |-------------------------------------------------------------------------- + | LINES + |-------------------------------------------------------------------------- + */ + + const lines = pathogens.map( + (pathogen, i) => ({ + + label: `${pathogen} %`, + + data: labels.map(label => { + + const row = rows.find(r => + + `${r.year}-W${r.period}` + === label + + && r.pathogen === pathogen + + ); + + return Number( + row?.positivity_rate || 0 + ); + + }), + + color: + COLORS[ + i % COLORS.length + ] + + }) + ); + + /* + |-------------------------------------------------------------------------- + | BUILD + |-------------------------------------------------------------------------- + */ + + buildMixedTrendChart( + canvasId, + labels, + totalCases, + lines + ); + +} + + +function renderPathogenChart(rows = []) { + buildDistributionChart( + 'pathogenChart', + 'doughnut', + rows, + 'pathogen' + ); +} +function renderSentinel(rows = []) { + buildDistributionChart( + 'sentinelChart', + 'pie', + rows, + 'name' + ); +} +function renderSubtypeChart(rows = []) { + + console.log('renderSubtypeChart'); + + buildDistributionChart( + 'subtypeChart', + 'bar', + rows, + 'subtype', + 'total', + getSubtypeColor + ); +} +function renderDemographics(data = {}) { + + buildDistributionChart( + 'ageChart', + 'doughnut', + data.age_distribution || [], + 'age_group' + ); + + buildDistributionChart( + 'sexChart', + 'bar', + data.sex_distribution || [], + 'patient_sex' + ); +} \ No newline at end of file diff --git a/dashboard/public/js/sequencing.js b/dashboard/public/js/sequencing.js new file mode 100644 index 0000000..f440a6e --- /dev/null +++ b/dashboard/public/js/sequencing.js @@ -0,0 +1,778 @@ +import { COLORS, SUBTYPE_COLORS } from "./globals.js"; + +let sequencingTotalChart; +let covidLineageFrequencyChart; +let influenzaSubtypeFrequencyChart; + + +document.addEventListener("DOMContentLoaded", () => { + + new DashboardFilter((startYear, startWeek, endYear, endWeek) => { + + fetch(`/api/dashboard/sequencing?surveillance_id=${window.SURVEILLANCE_ID}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) + .then(res => res.json()) + .then(data => { + + renderSequencingTotalChart(data.trend || []); + }); + + loadCovidLineageFrequency('week', startYear, startWeek, endYear, endWeek) + loadInfluenzaSubtypeFrequency('week', startYear, startWeek, endYear, endWeek) + + const elements = document.querySelectorAll(".report-period"); + elements.forEach(el => { + el.textContent = 'Week ' + startWeek + ' of ' + startYear + ' to ' + 'Week ' + endWeek + ' of ' + endYear + }); + + }); + + + +}); + + +function renderSequencingTotalChart(rows) { + + const ctx = document.getElementById('sequencingTotalChart')?.getContext('2d'); + if (!ctx) return; + + if (sequencingTotalChart) sequencingTotalChart.destroy(); + + + const totals = {}; + + rows.forEach(r => { + totals[r.period] = (totals[r.period] || 0) + Number(r.total); + }); + + const weeks = Object.keys(totals); + const values = Object.values(totals); + + sequencingTotalChart = new Chart(ctx, { + type: 'bar', + data: { + labels: weeks.map(w => `${w}`), + datasets: [{ + label: 'Total Samples', + data: values, + backgroundColor: '#0B8F3C' + }] + }, + options: { + maintainAspectRatio: false, + plugins: { + legend: { display: false }, + datalabels: { + display: false + } + }, + + + } + }); + charts['sequencingTotalChart'] = sequencingTotalChart; +} + + + + +function hexToRGBA(hex, alpha) { + const r = parseInt(hex.slice(1, 3), 16); + const g = parseInt(hex.slice(3, 5), 16); + const b = parseInt(hex.slice(5, 7), 16); + return `rgba(${r}, ${g}, ${b}, ${alpha})`; +} +function loadCovidLineageFrequency(periodType, startYear, startWeek, endYear, endWeek) { + + fetch(`/api/dashboard/covid-lineage-frequency?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) + .then(res => res.json()) + .then(data => { + + // const weeks = [...new Set(data.map(item => item.week))].sort(); + const totalYears = endYear - startYear; + const useYearlyView = totalYears >= 5; + + let periods; + + if (useYearlyView) { + + periods = [...new Set( + data.map(item => item.week.split('-')[0]) + )].sort((a, b) => a - b); + + } else { + + periods = [...new Set( + data.map(item => item.week) + )].sort(); + + } + const lineages = [...new Set(data.map(item => item.lineage))]; + + + + const datasets = lineages.map((lineage, index) => { + // const lineageData = weeks.map(week => { + // const found = data.find( + // item => item.week === week && item.lineage === lineage + // ); + // return found ? found.total : 0; + // }); + + const lineageData = periods.map(period => { + + if (useYearlyView) { + + return data + .filter(item => + item.week.split('-')[0] == period && + item.lineage === lineage + ) + .reduce((sum, item) => sum + item.total, 0); + + } + + const found = data.find( + item => + item.week === period && + item.lineage === lineage + ); + + return found ? found.total : 0; + + }); + + return { + label: lineage, + data: lineageData, + fill: true, + tension: 0.4, + // borderColor: 'transparent', + borderWidth: 0, + pointRadius: 0, + backgroundColor: hexToRGBA(COLORS[index % COLORS.length], 0.3), + stack: 'total' + }; + }); + + if (covidLineageFrequencyChart) covidLineageFrequencyChart.destroy(); + + const ctx = document.getElementById('covidLineageFrequency').getContext('2d'); + + covidLineageFrequencyChart = new Chart(ctx, { + type: 'line', + data: { + labels: periods, + datasets: datasets + }, + options: { + responsive: true, + maintainAspectRatio: false, + interaction: { + mode: 'index', + intersect: false + }, + plugins: { + legend: { + display: false + }, + tooltip: { + mode: 'index', + intersect: false + }, + datalabels: { + display: false + } + }, + scales: { + x: { + stacked: true, + + grid: { + display: false + } + }, + y: { + stacked: true, + beginAtZero: true, + title: { + display: true, + text: 'Relative Frequency' + }, + } + } + } + }); + charts['covidLineageFrequency'] = covidLineageFrequencyChart; + + // ------------------------- + // Custom right-side scrollable legend + // ------------------------- + const legendContainer = document.getElementById('legendContainer'); + legendContainer.innerHTML = ''; + datasets.forEach((dataset, index) => { + const item = document.createElement('div'); + item.style.display = 'flex'; + item.style.alignItems = 'center'; + item.style.marginBottom = '4px'; + item.style.fontSize = '11px'; + item.style.cursor = 'pointer'; + item.innerHTML = ` + + ${dataset.label} + `; + + item.addEventListener('click', () => { + const meta = covidLineageFrequencyChart.getDatasetMeta(index); + + const allHidden = datasets.every((d, i) => covidLineageFrequencyChart.getDatasetMeta(i).hidden || i === index); + if (!allHidden) { + datasets.forEach((d, i) => { + covidLineageFrequencyChart.getDatasetMeta(i).hidden = true; + }); + meta.hidden = false; + } else { + datasets.forEach((d, i) => { + covidLineageFrequencyChart.getDatasetMeta(i).hidden = false; + }); + } + + covidLineageFrequencyChart.update(); + + Array.from(legendContainer.children).forEach((child, i) => { + const metaItem = covidLineageFrequencyChart.getDatasetMeta(i); + child.style.opacity = metaItem.hidden ? 0.5 : 1; + }); + }); + + legendContainer.appendChild(item); + }); + + legendContainer.style.maxHeight = '375px'; + legendContainer.style.overflowY = 'auto'; + legendContainer.style.padding = '8px'; + legendContainer.style.borderRadius = '0px'; + }); +} +function loadInfluenzaSubtypeFrequency(periodType, startYear, startWeek, endYear, endWeek) { + + fetch(`/api/dashboard/influenza-relative-frequency-sequencing?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) + .then(res => res.json()) + .then(data => { + + const totalYears = endYear - startYear; + const useYearlyView = totalYears >= 5; + + let periods; + + if (useYearlyView) { + + periods = [...new Set( + data.map(item => item.week.split('-')[0]) + )].sort((a, b) => a - b); + + } else { + + periods = [...new Set( + data.map(item => item.week) + )].sort(); + + } + + const lineages = [...new Set( + data.map(item => item.lineage) + )]; + + const lineageColors = lineages.map( + label => SUBTYPE_COLORS[label] || '#9ca3af' + ); + + const datasets = lineages.map((lineage, index) => { + + const lineageData = periods.map(period => { + + if (useYearlyView) { + + return data + .filter(item => + item.week.split('-')[0] == period && + item.lineage === lineage + ) + .reduce((sum, item) => sum + item.total, 0); + + } + + const found = data.find( + item => + item.week === period && + item.lineage === lineage + ); + + return found ? found.total : 0; + + }); + + return { + label: lineage, + data: lineageData, + fill: true, + tension: 0.4, + borderWidth: 0, + pointRadius: 0, + backgroundColor: hexToRGBA( + lineageColors[index % lineageColors.length], + 0.6 + ), + stack: 'total' + }; + + }); + + if (influenzaSubtypeFrequencyChart) { + influenzaSubtypeFrequencyChart.destroy(); + } + + const ctx = document + .getElementById('influenzaSubtypeFrequency') + .getContext('2d'); + + influenzaSubtypeFrequencyChart = new Chart(ctx, { + + type: 'line', + + data: { + labels: periods, + datasets: datasets + }, + + options: { + + responsive: true, + maintainAspectRatio: false, + + interaction: { + mode: 'index', + intersect: false + }, + + plugins: { + + legend: { + display: false + }, + + tooltip: { + mode: 'index', + intersect: false + }, + + datalabels: { + display: false + } + + }, + + scales: { + + x: { + + stacked: true, + + + + grid: { + display: false + } + + }, + + y: { + + stacked: true, + + beginAtZero: true, + + title: { + display: true, + text: 'Relative Frequency' + } + + } + + } + + } + + }); + + charts['influenzaSubtypeFrequency'] = + influenzaSubtypeFrequencyChart; + + /* + |-------------------------------------------------------------------------- + | CUSTOM LEGEND + |-------------------------------------------------------------------------- + */ + + const legendContainer = + document.getElementById( + 'legendContainerInfluenzaSubtypeFrequency' + ); + + legendContainer.innerHTML = ''; + + datasets.forEach((dataset, index) => { + + const item = document.createElement('div'); + + item.style.display = 'flex'; + item.style.alignItems = 'center'; + item.style.marginBottom = '4px'; + item.style.fontSize = '11px'; + item.style.cursor = 'pointer'; + + item.innerHTML = ` + + ${dataset.label} + `; + + item.addEventListener('click', () => { + + const meta = + influenzaSubtypeFrequencyChart + .getDatasetMeta(index); + + const allHidden = datasets.every( + (d, i) => + influenzaSubtypeFrequencyChart + .getDatasetMeta(i).hidden || + i === index + ); + + if (!allHidden) { + + datasets.forEach((d, i) => { + + influenzaSubtypeFrequencyChart + .getDatasetMeta(i) + .hidden = true; + + }); + + meta.hidden = false; + + } else { + + datasets.forEach((d, i) => { + + influenzaSubtypeFrequencyChart + .getDatasetMeta(i) + .hidden = false; + + }); + + } + + influenzaSubtypeFrequencyChart.update(); + + Array.from(legendContainer.children) + .forEach((child, i) => { + + const metaItem = + influenzaSubtypeFrequencyChart + .getDatasetMeta(i); + + child.style.opacity = + metaItem.hidden ? 0.5 : 1; + + }); + + }); + + legendContainer.appendChild(item); + + }); + + legendContainer.style.maxHeight = '375px'; + legendContainer.style.overflowY = 'auto'; + legendContainer.style.padding = '8px'; + legendContainer.style.borderRadius = '0px'; + + }); + +} +// function loadCovidLineageFrequency(periodType, startYear, startWeek, endYear, endWeek) { + +// fetch(`/api/dashboard/covid-lineage-frequency?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) +// .then(res => res.json()) +// .then(data => { + +// const weeks = [...new Set(data.map(item => item.week))].sort(); + +// const lineages = [...new Set(data.map(item => item.lineage))]; + + + +// const datasets = lineages.map((lineage, index) => { +// const lineageData = weeks.map(week => { +// const found = data.find( +// item => item.week === week && item.lineage === lineage +// ); +// return found ? found.total : 0; +// }); + +// return { +// label: lineage, +// data: lineageData, +// fill: true, +// tension: 0.4, +// borderColor: 'transparent', +// borderWidth: 0, +// pointRadius: 0, +// backgroundColor: hexToRGBA(colors[index % colors.length], 0.3), +// stack: 'total' +// }; +// }); + +// if (covidLineageFrequencyChart) covidLineageFrequencyChart.destroy(); + +// const ctx = document.getElementById('covidLineageFrequency').getContext('2d'); +// if (!ctx) return; +// covidLineageFrequencyChart = new Chart(ctx, { +// type: 'line', +// data: { +// labels: weeks, +// datasets: datasets +// }, +// options: { +// responsive: true, +// maintainAspectRatio: false, +// interaction: { +// mode: 'index', +// intersect: false +// }, +// plugins: { +// legend: { +// display: false // hide default legend +// }, +// tooltip: { +// mode: 'index', +// intersect: false +// }, +// datalabels: { +// display: false // hide labels +// } +// }, +// scales: { +// x: { +// stacked: true, +// title: { +// display: true, +// text: 'Week' +// }, +// grid: { +// display: false +// } +// }, +// y: { +// stacked: true, +// beginAtZero: true, +// title: { +// display: true, +// text: 'Relative Frequency' +// }, +// } +// } +// } +// }); +// charts['covidLineageFrequencyChart'] = covidLineageFrequencyChart; + +// // ------------------------- +// // Custom right-side scrollable legend +// // ------------------------- +// const legendContainer = document.getElementById('legendContainer'); +// legendContainer.innerHTML = ''; + +// datasets.forEach((dataset, index) => { +// const item = document.createElement('div'); +// item.style.display = 'flex'; +// item.style.alignItems = 'center'; +// item.style.marginBottom = '4px'; +// item.style.fontSize = '11px'; +// item.style.cursor = 'pointer'; +// item.innerHTML = ` +// +// ${dataset.label} +// `; + +// item.addEventListener('click', () => { +// const meta = covidLineageFrequencyChart.getDatasetMeta(index); + +// const allHidden = datasets.every((d, i) => covidLineageFrequencyChart.getDatasetMeta(i).hidden || i === index); +// if (!allHidden) { +// datasets.forEach((d, i) => { +// covidLineageFrequencyChart.getDatasetMeta(i).hidden = true; +// }); +// meta.hidden = false; +// } else { +// datasets.forEach((d, i) => { +// covidLineageFrequencyChart.getDatasetMeta(i).hidden = false; +// }); +// } + +// covidLineageFrequencyChart.update(); + +// Array.from(legendContainer.children).forEach((child, i) => { +// const metaItem = covidLineageFrequencyChart.getDatasetMeta(i); +// child.style.opacity = metaItem.hidden ? 0.5 : 1; +// }); +// }); + +// legendContainer.appendChild(item); +// }); + +// legendContainer.style.maxHeight = '375px'; +// legendContainer.style.overflowY = 'auto'; +// legendContainer.style.padding = '8px'; +// legendContainer.style.borderRadius = '0px'; +// }); +// } + +// function loadInfluenzaSubtypeFrequency(periodType, startYear, startWeek, endYear, endWeek) { + +// fetch(`/api/dashboard/influenza-relative-frequency-sequencing?period_type=${periodType}&start_year=${startYear}&start_week=${startWeek}&end_year=${endYear}&end_week=${endWeek}`) +// .then(res => res.json()) +// .then(data => { + +// const weeks = [...new Set(data.map(item => item.week))].sort(); + + + +// const lineages = [...new Set(data.map(item => item.lineage))]; +// const datasets = lineages.map((lineage, index) => { +// const lineageData = weeks.map(week => { +// const found = data.find( +// item => item.week === week && item.lineage === lineage +// ); +// return found ? found.total : 0; +// }); + +// return { +// label: lineage, +// data: lineageData, +// fill: true, +// tension: 0.4, +// borderColor: 'transparent', +// borderWidth: 0, +// pointRadius: 0, +// backgroundColor: hexToRGBA(colors[(index * 2) % colors.length], 0.8), +// stack: 'total' +// }; +// }); + +// if (influenzaSubtypeFrequencyChart) influenzaSubtypeFrequencyChart.destroy(); + +// const ctx = document.getElementById('influenzaSubtypeFrequency').getContext('2d'); +// if (!ctx) return; +// influenzaSubtypeFrequencyChart = new Chart(ctx, { +// type: 'line', +// data: { +// labels: weeks, +// datasets: datasets +// }, +// options: { +// responsive: true, +// maintainAspectRatio: false, +// interaction: { +// mode: 'index', +// intersect: false +// }, +// plugins: { +// legend: { +// display: false +// }, +// tooltip: { +// mode: 'index', +// intersect: false +// }, +// datalabels: { +// display: false +// } +// }, +// scales: { +// x: { +// stacked: true, +// title: { +// display: true, +// text: 'Week' +// }, +// grid: { +// display: false +// } +// }, +// y: { +// stacked: true, +// beginAtZero: true, +// title: { +// display: true, +// text: 'Relative Frequency' +// }, +// } +// } +// } +// }); +// charts['influenzaSubtypeFrequencyChart'] = influenzaSubtypeFrequencyChart; + +// const legendContainer = document.getElementById('legendContainerInfluenzaSubtypeFrequency'); +// legendContainer.innerHTML = ''; + +// datasets.forEach((dataset, index) => { +// const item = document.createElement('div'); +// item.style.display = 'flex'; +// item.style.alignItems = 'center'; +// item.style.marginBottom = '4px'; +// item.style.fontSize = '11px'; +// item.style.cursor = 'pointer'; +// item.innerHTML = ` +// +// ${dataset.label} +// `; + +// item.addEventListener('click', () => { +// const meta = influenzaSubtypeFrequencyChart.getDatasetMeta(index); + +// const allHidden = datasets.every((d, i) => influenzaSubtypeFrequencyChart.getDatasetMeta(i).hidden || i === index); +// if (!allHidden) { +// datasets.forEach((d, i) => { +// influenzaSubtypeFrequencyChart.getDatasetMeta(i).hidden = true; +// }); +// meta.hidden = false; +// } else { +// datasets.forEach((d, i) => { +// influenzaSubtypeFrequencyChart.getDatasetMeta(i).hidden = false; +// }); +// } + +// influenzaSubtypeFrequencyChart.update(); + +// Array.from(legendContainer.children).forEach((child, i) => { +// const metaItem = influenzaSubtypeFrequencyChart.getDatasetMeta(i); +// child.style.opacity = metaItem.hidden ? 0.5 : 1; +// }); +// }); + +// legendContainer.appendChild(item); +// }); + +// legendContainer.style.maxHeight = '375px'; +// legendContainer.style.overflowY = 'auto'; +// legendContainer.style.padding = '8px'; +// legendContainer.style.borderRadius = '0px'; +// }); +// } \ No newline at end of file diff --git a/dashboard/public/robots.txt b/dashboard/public/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/dashboard/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/dashboard/resources/css/app.css b/dashboard/resources/css/app.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/dashboard/resources/css/app.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/dashboard/resources/js/app.js b/dashboard/resources/js/app.js new file mode 100644 index 0000000..a8093be --- /dev/null +++ b/dashboard/resources/js/app.js @@ -0,0 +1,7 @@ +import './bootstrap'; + +import Alpine from 'alpinejs'; + +window.Alpine = Alpine; + +Alpine.start(); diff --git a/dashboard/resources/js/bootstrap.js b/dashboard/resources/js/bootstrap.js new file mode 100644 index 0000000..5f1390b --- /dev/null +++ b/dashboard/resources/js/bootstrap.js @@ -0,0 +1,4 @@ +import axios from 'axios'; +window.axios = axios; + +window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; diff --git a/dashboard/resources/views/auth/confirm-password.blade.php b/dashboard/resources/views/auth/confirm-password.blade.php new file mode 100644 index 0000000..3cbbe08 --- /dev/null +++ b/dashboard/resources/views/auth/confirm-password.blade.php @@ -0,0 +1,27 @@ + +
    + {{ __('This is a secure area of the application. Please confirm your password before continuing.') }} +
    + +
    + @csrf + + +
    + + + + + +
    + +
    + + {{ __('Confirm') }} + +
    +
    +
    diff --git a/dashboard/resources/views/auth/forgot-password.blade.php b/dashboard/resources/views/auth/forgot-password.blade.php new file mode 100644 index 0000000..3c70788 --- /dev/null +++ b/dashboard/resources/views/auth/forgot-password.blade.php @@ -0,0 +1,25 @@ + +
    + {{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }} +
    + + + + +
    + @csrf + + +
    + + + +
    + +
    + + {{ __('Email Password Reset Link') }} + +
    +
    +
    diff --git a/dashboard/resources/views/auth/login.blade.php b/dashboard/resources/views/auth/login.blade.php new file mode 100644 index 0000000..80e1b39 --- /dev/null +++ b/dashboard/resources/views/auth/login.blade.php @@ -0,0 +1,47 @@ + + + + +
    + @csrf + + +
    + + + +
    + + +
    + + + + + +
    + + +
    + +
    + +
    + @if (Route::has('password.request')) + + {{ __('Forgot your password?') }} + + @endif + + + {{ __('Log in') }} + +
    +
    +
    diff --git a/dashboard/resources/views/auth/register.blade.php b/dashboard/resources/views/auth/register.blade.php new file mode 100644 index 0000000..d4b3d58 --- /dev/null +++ b/dashboard/resources/views/auth/register.blade.php @@ -0,0 +1,52 @@ + +
    + @csrf + + +
    + + + +
    + + +
    + + + +
    + + +
    + + + + + +
    + + +
    + + + + + +
    + +
    + + {{ __('Already registered?') }} + + + + {{ __('Register') }} + +
    +
    +
    diff --git a/dashboard/resources/views/auth/reset-password.blade.php b/dashboard/resources/views/auth/reset-password.blade.php new file mode 100644 index 0000000..a6494cc --- /dev/null +++ b/dashboard/resources/views/auth/reset-password.blade.php @@ -0,0 +1,39 @@ + +
    + @csrf + + + + + +
    + + + +
    + + +
    + + + +
    + + +
    + + + + + +
    + +
    + + {{ __('Reset Password') }} + +
    +
    +
    diff --git a/dashboard/resources/views/auth/verify-email.blade.php b/dashboard/resources/views/auth/verify-email.blade.php new file mode 100644 index 0000000..4e4222f --- /dev/null +++ b/dashboard/resources/views/auth/verify-email.blade.php @@ -0,0 +1,31 @@ + +
    + {{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }} +
    + + @if (session('status') == 'verification-link-sent') +
    + {{ __('A new verification link has been sent to the email address you provided during registration.') }} +
    + @endif + +
    +
    + @csrf + +
    + + {{ __('Resend Verification Email') }} + +
    +
    + +
    + @csrf + + +
    +
    +
    diff --git a/dashboard/resources/views/components/application-logo.blade.php b/dashboard/resources/views/components/application-logo.blade.php new file mode 100644 index 0000000..46579cf --- /dev/null +++ b/dashboard/resources/views/components/application-logo.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/dashboard/resources/views/components/auth-session-status.blade.php b/dashboard/resources/views/components/auth-session-status.blade.php new file mode 100644 index 0000000..a39bc7d --- /dev/null +++ b/dashboard/resources/views/components/auth-session-status.blade.php @@ -0,0 +1,7 @@ +@props(['status']) + +@if ($status) +
    merge(['class' => 'font-medium text-sm text-green-600 dark:text-green-400']) }}> + {{ $status }} +
    +@endif diff --git a/dashboard/resources/views/components/danger-button.blade.php b/dashboard/resources/views/components/danger-button.blade.php new file mode 100644 index 0000000..d7417b2 --- /dev/null +++ b/dashboard/resources/views/components/danger-button.blade.php @@ -0,0 +1,3 @@ + diff --git a/dashboard/resources/views/components/dropdown-link.blade.php b/dashboard/resources/views/components/dropdown-link.blade.php new file mode 100644 index 0000000..6d5279d --- /dev/null +++ b/dashboard/resources/views/components/dropdown-link.blade.php @@ -0,0 +1 @@ +merge(['class' => 'block w-full px-4 py-2 text-start text-sm leading-5 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-800 transition duration-150 ease-in-out']) }}>{{ $slot }} diff --git a/dashboard/resources/views/components/dropdown.blade.php b/dashboard/resources/views/components/dropdown.blade.php new file mode 100644 index 0000000..e4106a4 --- /dev/null +++ b/dashboard/resources/views/components/dropdown.blade.php @@ -0,0 +1,35 @@ +@props(['align' => 'right', 'width' => '48', 'contentClasses' => 'py-1 bg-white dark:bg-gray-700']) + +@php +$alignmentClasses = match ($align) { + 'left' => 'ltr:origin-top-left rtl:origin-top-right start-0', + 'top' => 'origin-top', + default => 'ltr:origin-top-right rtl:origin-top-left end-0', +}; + +$width = match ($width) { + '48' => 'w-48', + default => $width, +}; +@endphp + +
    +
    + {{ $trigger }} +
    + + +
    diff --git a/dashboard/resources/views/components/input-error.blade.php b/dashboard/resources/views/components/input-error.blade.php new file mode 100644 index 0000000..ad95f6b --- /dev/null +++ b/dashboard/resources/views/components/input-error.blade.php @@ -0,0 +1,9 @@ +@props(['messages']) + +@if ($messages) +
      merge(['class' => 'text-sm text-red-600 dark:text-red-400 space-y-1']) }}> + @foreach ((array) $messages as $message) +
    • {{ $message }}
    • + @endforeach +
    +@endif diff --git a/dashboard/resources/views/components/input-label.blade.php b/dashboard/resources/views/components/input-label.blade.php new file mode 100644 index 0000000..e93b059 --- /dev/null +++ b/dashboard/resources/views/components/input-label.blade.php @@ -0,0 +1,5 @@ +@props(['value']) + + diff --git a/dashboard/resources/views/components/modal.blade.php b/dashboard/resources/views/components/modal.blade.php new file mode 100644 index 0000000..384662a --- /dev/null +++ b/dashboard/resources/views/components/modal.blade.php @@ -0,0 +1,78 @@ +@props([ + 'name', + 'show' => false, + 'maxWidth' => '2xl' +]) + +@php +$maxWidth = [ + 'sm' => 'sm:max-w-sm', + 'md' => 'sm:max-w-md', + 'lg' => 'sm:max-w-lg', + 'xl' => 'sm:max-w-xl', + '2xl' => 'sm:max-w-2xl', +][$maxWidth]; +@endphp + +
    +
    +
    +
    + +
    + {{ $slot }} +
    +
    diff --git a/dashboard/resources/views/components/nav-link.blade.php b/dashboard/resources/views/components/nav-link.blade.php new file mode 100644 index 0000000..37bad55 --- /dev/null +++ b/dashboard/resources/views/components/nav-link.blade.php @@ -0,0 +1,11 @@ +@props(['active']) + +@php +$classes = ($active ?? false) + ? 'inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 dark:border-indigo-600 text-sm font-medium leading-5 text-gray-900 dark:text-gray-100 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out' + : 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300 hover:border-gray-300 dark:hover:border-gray-700 focus:outline-none focus:text-gray-700 dark:focus:text-gray-300 focus:border-gray-300 dark:focus:border-gray-700 transition duration-150 ease-in-out'; +@endphp + +merge(['class' => $classes]) }}> + {{ $slot }} + diff --git a/dashboard/resources/views/components/primary-button.blade.php b/dashboard/resources/views/components/primary-button.blade.php new file mode 100644 index 0000000..99bf389 --- /dev/null +++ b/dashboard/resources/views/components/primary-button.blade.php @@ -0,0 +1,3 @@ + diff --git a/dashboard/resources/views/components/responsive-nav-link.blade.php b/dashboard/resources/views/components/responsive-nav-link.blade.php new file mode 100644 index 0000000..98b55d1 --- /dev/null +++ b/dashboard/resources/views/components/responsive-nav-link.blade.php @@ -0,0 +1,11 @@ +@props(['active']) + +@php +$classes = ($active ?? false) + ? 'block w-full ps-3 pe-4 py-2 border-l-4 border-indigo-400 dark:border-indigo-600 text-start text-base font-medium text-indigo-700 dark:text-indigo-300 bg-indigo-50 dark:bg-indigo-900/50 focus:outline-none focus:text-indigo-800 dark:focus:text-indigo-200 focus:bg-indigo-100 dark:focus:bg-indigo-900 focus:border-indigo-700 dark:focus:border-indigo-300 transition duration-150 ease-in-out' + : 'block w-full ps-3 pe-4 py-2 border-l-4 border-transparent text-start text-base font-medium text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-200 hover:bg-gray-50 dark:hover:bg-gray-700 hover:border-gray-300 dark:hover:border-gray-600 focus:outline-none focus:text-gray-800 dark:focus:text-gray-200 focus:bg-gray-50 dark:focus:bg-gray-700 focus:border-gray-300 dark:focus:border-gray-600 transition duration-150 ease-in-out'; +@endphp + +merge(['class' => $classes]) }}> + {{ $slot }} + diff --git a/dashboard/resources/views/components/secondary-button.blade.php b/dashboard/resources/views/components/secondary-button.blade.php new file mode 100644 index 0000000..fa1c549 --- /dev/null +++ b/dashboard/resources/views/components/secondary-button.blade.php @@ -0,0 +1,3 @@ + diff --git a/dashboard/resources/views/components/text-input.blade.php b/dashboard/resources/views/components/text-input.blade.php new file mode 100644 index 0000000..3f44b2f --- /dev/null +++ b/dashboard/resources/views/components/text-input.blade.php @@ -0,0 +1,3 @@ +@props(['disabled' => false]) + +merge(['class' => 'border-gray-300 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300 focus:border-indigo-500 dark:focus:border-indigo-600 focus:ring-indigo-500 dark:focus:ring-indigo-600 rounded-md shadow-sm']) }}> diff --git a/dashboard/resources/views/dashboard/detail.blade.php b/dashboard/resources/views/dashboard/detail.blade.php new file mode 100644 index 0000000..53c0042 --- /dev/null +++ b/dashboard/resources/views/dashboard/detail.blade.php @@ -0,0 +1,288 @@ +@extends('layouts.app') + +@section('content') + +
    + + +
    + +

    + {{ $selected->code }} Detail Page +

    + +
    + + + + +
    +
    + +
    + +
    +
    +
    + Total Cases Reported (latest epiweek) +

    0

    + — No change +
    +
    +
    + +
    +
    +
    + Overall Positivity Rate +

    0%

    + — No change +
    +
    +
    + +
    +
    +
    + Influenza Rate +

    0%

    + — No change +
    +
    +
    + +
    +
    +
    + SARS-CoV-2 Rate +

    0%

    + — No change +
    +
    +
    + +
    + + code === 'AFI'): ?> + +
    +
    +
    +
    +
    Real-Time RT-PCR (NP/OP Sample)
    +

    + (based on selected epiweek range) +

    + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    Real-Time Multiplex RT-PCR (Plasma Sample)
    +

    + (based on selected epiweek range) +

    + +
    + +
    +
    + +
    + +
    +
    +
    +
    +
    +
    +
    Serology ELISA (IgM) (Serum Sample)
    +

    + (based on selected epiweek range) +

    + +
    + +
    +
    + +
    +
    +
    +
    + + +
    + + +
    +
    + +
    +
    + +
    + Case Trends & Positivity Rate by Epiweek +
    +

    + (based on selected epiweek range) +

    +
    + +
    + +
    +
    + + + +
    + + +
    +
    +
    + +
    Pathogen Distribution
    +

    + (based on selected epiweek range) +

    +
    + +
    + +
    +
    +
    +
    + + + +
    + + +
    +
    +
    + +
    Cases by Province
    +

    + (based on selected epiweek range) +

    +
    + +
    +
    +
    +
    +
    +
    + +
    Sentinel Sites & Influenza Subtypes
    + +
    + + +
    + Cases by Sentinel Site +

    + (based on selected epiweek range) +

    +
    + +
    +
    + + +
    + Influenza Subtypes +

    + (based on selected epiweek range) +

    +
    + +
    +
    + +
    + +
    +
    +
    +
    + + +
    +
    +
    +
    +
    Sex Distribution
    +

    + (based on selected epiweek range) +

    +
    + +
    +
    +
    +
    + +
    +
    +
    +
    Age Distribution
    +

    + (based on selected epiweek range) +

    +
    + +
    +
    +
    +
    +
    +
    + +@endsection + +@section('scripts') + + + + + +@endsection \ No newline at end of file diff --git a/dashboard/resources/views/dashboard/index.blade.php b/dashboard/resources/views/dashboard/index.blade.php new file mode 100644 index 0000000..e69de29 diff --git a/dashboard/resources/views/dashboard/overview.blade.php b/dashboard/resources/views/dashboard/overview.blade.php new file mode 100644 index 0000000..b3bb709 --- /dev/null +++ b/dashboard/resources/views/dashboard/overview.blade.php @@ -0,0 +1,202 @@ +@extends('layouts.app') + +@section('content') + +
    + +
    +
    +

    Dashboard Overview

    +
    + +
    + + + + + +
    +
    + + +
    + + +
    +
    + +
    + + +
    +
    +
    + +
    +
    +
    Epidemic Trend
    +

    + (based on selected epiweek range) +

    +
    + +
    +
    +
    + +
    +
    +
    + + +
    +
    +
    +
    +
    + +
    + Influenza Subtypes Distribution +
    + +

    + (based on selected epiweek range) +

    + +
    + +
    + +
    +
    + +
    +
    +
    + + +
    +
    +
    +
    +
    +
    SARS-CoV-2 Detected Distribute by Age Group
    +

    + (based on selected epiweek range) +

    +
    + +
    +
    +
    + +
    +
    +
    + + +
    +
    +
    +
    +
    +
    SARS-CoV-2 Lineage Relative Frequencies Over Time
    +

    + (based on selected epiweek range) +

    +
    + +
    +
    +
    +
    + +
    +
    +
    + + +
    +
    +
    +
    +
    +
    Influenza Subtypes Relative Frequencies Over Time
    +

    + (based on selected epiweek range) +

    + +
    + +
    +
    +
    +
    + +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    +
    + +
    Influenza Subtypes Detected by Province
    +

    (based on selected epiweek range)

    + +
    +
    +
    + + +
    +
    + +
    +
    +
    + +
    + +
    + + + +@endsection \ No newline at end of file diff --git a/dashboard/resources/views/dashboard/sequencing.blade.php b/dashboard/resources/views/dashboard/sequencing.blade.php new file mode 100644 index 0000000..47a1049 --- /dev/null +++ b/dashboard/resources/views/dashboard/sequencing.blade.php @@ -0,0 +1,112 @@ +@extends('layouts.app') + +@section('content') + +
    + +
    + +

    Sequencing Analysis

    + +
    + + + + +
    +
    + +
    + +
    +
    +
    +
    Total Sequenced Samples Over Time
    +

    + (based on selected epiweek range) +

    + +
    +
    +
    + +
    +
    +
    +
    Influenza Subtypes Relative Frequencies Over Time
    +

    + (based on selected epiweek range) +

    + +
    +
    +
    +
    + +
    +
    + + +
    +
    +
    +
    SARS-CoV-2 Lineage/Sublineage Relative Frequencies Over Time
    +

    + (based on selected epiweek range) +

    +{{-- --}} + +
    +
    +
    +
    + +{{--
    --}} +{{--
    --}} +{{--
    --}} +{{-- --}} +{{-- --}} +{{--
    --}} +{{--
    --}} +{{--
    --}} + + + + +
    + +
    + +@endsection + +@section('scripts') + + + +@endsection \ No newline at end of file diff --git a/dashboard/resources/views/layouts/app.blade.php b/dashboard/resources/views/layouts/app.blade.php new file mode 100644 index 0000000..8a05483 --- /dev/null +++ b/dashboard/resources/views/layouts/app.blade.php @@ -0,0 +1,381 @@ + + + + + NRML Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    +
    + National Reference Medical Laboratory Surveillance Dashboard +
    +
    + Last update: -- +
    +
    + + + +
    +
    + @yield('content') +
    +
    +
    +
    + Updating dashboard data... +
    + @yield('scripts') + + + + + + + \ No newline at end of file diff --git a/dashboard/resources/views/layouts/guest.blade.php b/dashboard/resources/views/layouts/guest.blade.php new file mode 100644 index 0000000..4b369b6 --- /dev/null +++ b/dashboard/resources/views/layouts/guest.blade.php @@ -0,0 +1,30 @@ + + + + + + + + {{ config('app.name', 'Laravel') }} + + + + + + + @vite(['resources/css/app.css', 'resources/js/app.js']) + + +
    +
    + + + +
    + +
    + {{ $slot }} +
    +
    + + diff --git a/dashboard/resources/views/layouts/navigation.blade.php b/dashboard/resources/views/layouts/navigation.blade.php new file mode 100644 index 0000000..c64bf64 --- /dev/null +++ b/dashboard/resources/views/layouts/navigation.blade.php @@ -0,0 +1,100 @@ + diff --git a/dashboard/resources/views/profile/edit.blade.php b/dashboard/resources/views/profile/edit.blade.php new file mode 100644 index 0000000..ef69910 --- /dev/null +++ b/dashboard/resources/views/profile/edit.blade.php @@ -0,0 +1,29 @@ + + +

    + {{ __('Profile') }} +

    +
    + +
    +
    +
    +
    + @include('profile.partials.update-profile-information-form') +
    +
    + +
    +
    + @include('profile.partials.update-password-form') +
    +
    + +
    +
    + @include('profile.partials.delete-user-form') +
    +
    +
    +
    +
    diff --git a/dashboard/resources/views/profile/partials/delete-user-form.blade.php b/dashboard/resources/views/profile/partials/delete-user-form.blade.php new file mode 100644 index 0000000..b3a6382 --- /dev/null +++ b/dashboard/resources/views/profile/partials/delete-user-form.blade.php @@ -0,0 +1,55 @@ +
    +
    +

    + {{ __('Delete Account') }} +

    + +

    + {{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.') }} +

    +
    + + {{ __('Delete Account') }} + + +
    + @csrf + @method('delete') + +

    + {{ __('Are you sure you want to delete your account?') }} +

    + +

    + {{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.') }} +

    + +
    + + + + + +
    + +
    + + {{ __('Cancel') }} + + + + {{ __('Delete Account') }} + +
    +
    +
    +
    diff --git a/dashboard/resources/views/profile/partials/update-password-form.blade.php b/dashboard/resources/views/profile/partials/update-password-form.blade.php new file mode 100644 index 0000000..acd200d --- /dev/null +++ b/dashboard/resources/views/profile/partials/update-password-form.blade.php @@ -0,0 +1,48 @@ +
    +
    +

    + {{ __('Update Password') }} +

    + +

    + {{ __('Ensure your account is using a long, random password to stay secure.') }} +

    +
    + +
    + @csrf + @method('put') + +
    + + + +
    + +
    + + + +
    + +
    + + + +
    + +
    + {{ __('Save') }} + + @if (session('status') === 'password-updated') +

    {{ __('Saved.') }}

    + @endif +
    +
    +
    diff --git a/dashboard/resources/views/profile/partials/update-profile-information-form.blade.php b/dashboard/resources/views/profile/partials/update-profile-information-form.blade.php new file mode 100644 index 0000000..7273fff --- /dev/null +++ b/dashboard/resources/views/profile/partials/update-profile-information-form.blade.php @@ -0,0 +1,64 @@ +
    +
    +

    + {{ __('Profile Information') }} +

    + +

    + {{ __("Update your account's profile information and email address.") }} +

    +
    + +
    + @csrf +
    + +
    + @csrf + @method('patch') + +
    + + + +
    + +
    + + + + + @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail()) +
    +

    + {{ __('Your email address is unverified.') }} + + +

    + + @if (session('status') === 'verification-link-sent') +

    + {{ __('A new verification link has been sent to your email address.') }} +

    + @endif +
    + @endif +
    + +
    + {{ __('Save') }} + + @if (session('status') === 'profile-updated') +

    {{ __('Saved.') }}

    + @endif +
    +
    +
    diff --git a/dashboard/resources/views/welcome.blade.php b/dashboard/resources/views/welcome.blade.php new file mode 100644 index 0000000..b7355d7 --- /dev/null +++ b/dashboard/resources/views/welcome.blade.php @@ -0,0 +1,277 @@ + + + + + + + {{ config('app.name', 'Laravel') }} + + + + + + + @if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot'))) + @vite(['resources/css/app.css', 'resources/js/app.js']) + @else + + @endif + + +
    + @if (Route::has('login')) + + @endif +
    +
    +
    +
    +

    Let's get started

    +

    Laravel has an incredibly rich ecosystem.
    We suggest starting with the following.

    + + +
    +
    + {{-- Laravel Logo --}} + + + + + + + + + + + {{-- Light Mode 12 SVG --}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{-- Dark Mode 12 SVG --}} + +
    +
    +
    +
    + + @if (Route::has('login')) + + @endif + + diff --git a/dashboard/routes/api.php b/dashboard/routes/api.php new file mode 100644 index 0000000..0210d77 --- /dev/null +++ b/dashboard/routes/api.php @@ -0,0 +1,17 @@ +group(function () { + Route::get('register', [RegisteredUserController::class, 'create']) + ->name('register'); + + Route::post('register', [RegisteredUserController::class, 'store']); + + Route::get('login', [AuthenticatedSessionController::class, 'create']) + ->name('login'); + + Route::post('login', [AuthenticatedSessionController::class, 'store']); + + Route::get('forgot-password', [PasswordResetLinkController::class, 'create']) + ->name('password.request'); + + Route::post('forgot-password', [PasswordResetLinkController::class, 'store']) + ->name('password.email'); + + Route::get('reset-password/{token}', [NewPasswordController::class, 'create']) + ->name('password.reset'); + + Route::post('reset-password', [NewPasswordController::class, 'store']) + ->name('password.store'); +}); + +Route::middleware('auth')->group(function () { + Route::get('verify-email', EmailVerificationPromptController::class) + ->name('verification.notice'); + + Route::get('verify-email/{id}/{hash}', VerifyEmailController::class) + ->middleware(['signed', 'throttle:6,1']) + ->name('verification.verify'); + + Route::post('email/verification-notification', [EmailVerificationNotificationController::class, 'store']) + ->middleware('throttle:6,1') + ->name('verification.send'); + + Route::get('confirm-password', [ConfirmablePasswordController::class, 'show']) + ->name('password.confirm'); + + Route::post('confirm-password', [ConfirmablePasswordController::class, 'store']); + + Route::put('password', [PasswordController::class, 'update'])->name('password.update'); + + Route::post('logout', [AuthenticatedSessionController::class, 'destroy']) + ->name('logout'); +}); diff --git a/dashboard/routes/console.php b/dashboard/routes/console.php new file mode 100644 index 0000000..7b1d12b --- /dev/null +++ b/dashboard/routes/console.php @@ -0,0 +1,11 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); + +Schedule::command('app:fetch-source-data')->everyTwoHours(); diff --git a/dashboard/routes/web.php b/dashboard/routes/web.php new file mode 100644 index 0000000..6a67a74 --- /dev/null +++ b/dashboard/routes/web.php @@ -0,0 +1,44 @@ +check() + ? redirect()->route('dashboard') + : redirect()->route('login'); + +}); + +Route::get('/dashboard', function () { + return view('dashboard'); +})->middleware(['auth', 'verified'])->name('dashboard'); + +Route::middleware('auth')->group(function () { + Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit'); + Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update'); + Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy'); + Route::get('/dashboard', [DashboardController::class, 'overview']) + ->name('dashboard'); + Route::get('/dashboard/seq', function () { + return view('dashboard.sequencing'); + }); + Route::get('/dashboard/{code}', [DashboardController::class, 'detail']) + ->name('dashboard.detail'); + +}); +Route::middleware(['auth', 'role:admin'])->group(function () { + + Route::get('/admin/users', function () { + return view('admin.users'); + }); + + Route::get('/admin/settings', function () { + return view('admin.settings'); + }); + +}); + +require __DIR__ . '/auth.php'; diff --git a/dashboard/storage/app/.gitignore b/dashboard/storage/app/.gitignore new file mode 100644 index 0000000..fedb287 --- /dev/null +++ b/dashboard/storage/app/.gitignore @@ -0,0 +1,4 @@ +* +!private/ +!public/ +!.gitignore diff --git a/dashboard/storage/app/private/.gitignore b/dashboard/storage/app/private/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/dashboard/storage/app/private/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/dashboard/storage/app/public/.gitignore b/dashboard/storage/app/public/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/dashboard/storage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/dashboard/storage/logs/.gitignore b/dashboard/storage/logs/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/dashboard/storage/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/dashboard/tailwind.config.js b/dashboard/tailwind.config.js new file mode 100644 index 0000000..c29eb1a --- /dev/null +++ b/dashboard/tailwind.config.js @@ -0,0 +1,21 @@ +import defaultTheme from 'tailwindcss/defaultTheme'; +import forms from '@tailwindcss/forms'; + +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', + './storage/framework/views/*.php', + './resources/views/**/*.blade.php', + ], + + theme: { + extend: { + fontFamily: { + sans: ['Figtree', ...defaultTheme.fontFamily.sans], + }, + }, + }, + + plugins: [forms], +}; diff --git a/dashboard/tests/Feature/Auth/AuthenticationTest.php b/dashboard/tests/Feature/Auth/AuthenticationTest.php new file mode 100644 index 0000000..13dcb7c --- /dev/null +++ b/dashboard/tests/Feature/Auth/AuthenticationTest.php @@ -0,0 +1,54 @@ +get('/login'); + + $response->assertStatus(200); + } + + public function test_users_can_authenticate_using_the_login_screen(): void + { + $user = User::factory()->create(); + + $response = $this->post('/login', [ + 'email' => $user->email, + 'password' => 'password', + ]); + + $this->assertAuthenticated(); + $response->assertRedirect(route('dashboard', absolute: false)); + } + + public function test_users_can_not_authenticate_with_invalid_password(): void + { + $user = User::factory()->create(); + + $this->post('/login', [ + 'email' => $user->email, + 'password' => 'wrong-password', + ]); + + $this->assertGuest(); + } + + public function test_users_can_logout(): void + { + $user = User::factory()->create(); + + $response = $this->actingAs($user)->post('/logout'); + + $this->assertGuest(); + $response->assertRedirect('/'); + } +} diff --git a/dashboard/tests/Feature/Auth/EmailVerificationTest.php b/dashboard/tests/Feature/Auth/EmailVerificationTest.php new file mode 100644 index 0000000..705570b --- /dev/null +++ b/dashboard/tests/Feature/Auth/EmailVerificationTest.php @@ -0,0 +1,58 @@ +unverified()->create(); + + $response = $this->actingAs($user)->get('/verify-email'); + + $response->assertStatus(200); + } + + public function test_email_can_be_verified(): void + { + $user = User::factory()->unverified()->create(); + + Event::fake(); + + $verificationUrl = URL::temporarySignedRoute( + 'verification.verify', + now()->addMinutes(60), + ['id' => $user->id, 'hash' => sha1($user->email)] + ); + + $response = $this->actingAs($user)->get($verificationUrl); + + Event::assertDispatched(Verified::class); + $this->assertTrue($user->fresh()->hasVerifiedEmail()); + $response->assertRedirect(route('dashboard', absolute: false).'?verified=1'); + } + + public function test_email_is_not_verified_with_invalid_hash(): void + { + $user = User::factory()->unverified()->create(); + + $verificationUrl = URL::temporarySignedRoute( + 'verification.verify', + now()->addMinutes(60), + ['id' => $user->id, 'hash' => sha1('wrong-email')] + ); + + $this->actingAs($user)->get($verificationUrl); + + $this->assertFalse($user->fresh()->hasVerifiedEmail()); + } +} diff --git a/dashboard/tests/Feature/Auth/PasswordConfirmationTest.php b/dashboard/tests/Feature/Auth/PasswordConfirmationTest.php new file mode 100644 index 0000000..ff85721 --- /dev/null +++ b/dashboard/tests/Feature/Auth/PasswordConfirmationTest.php @@ -0,0 +1,44 @@ +create(); + + $response = $this->actingAs($user)->get('/confirm-password'); + + $response->assertStatus(200); + } + + public function test_password_can_be_confirmed(): void + { + $user = User::factory()->create(); + + $response = $this->actingAs($user)->post('/confirm-password', [ + 'password' => 'password', + ]); + + $response->assertRedirect(); + $response->assertSessionHasNoErrors(); + } + + public function test_password_is_not_confirmed_with_invalid_password(): void + { + $user = User::factory()->create(); + + $response = $this->actingAs($user)->post('/confirm-password', [ + 'password' => 'wrong-password', + ]); + + $response->assertSessionHasErrors(); + } +} diff --git a/dashboard/tests/Feature/Auth/PasswordResetTest.php b/dashboard/tests/Feature/Auth/PasswordResetTest.php new file mode 100644 index 0000000..aa50350 --- /dev/null +++ b/dashboard/tests/Feature/Auth/PasswordResetTest.php @@ -0,0 +1,73 @@ +get('/forgot-password'); + + $response->assertStatus(200); + } + + public function test_reset_password_link_can_be_requested(): void + { + Notification::fake(); + + $user = User::factory()->create(); + + $this->post('/forgot-password', ['email' => $user->email]); + + Notification::assertSentTo($user, ResetPassword::class); + } + + public function test_reset_password_screen_can_be_rendered(): void + { + Notification::fake(); + + $user = User::factory()->create(); + + $this->post('/forgot-password', ['email' => $user->email]); + + Notification::assertSentTo($user, ResetPassword::class, function ($notification) { + $response = $this->get('/reset-password/'.$notification->token); + + $response->assertStatus(200); + + return true; + }); + } + + public function test_password_can_be_reset_with_valid_token(): void + { + Notification::fake(); + + $user = User::factory()->create(); + + $this->post('/forgot-password', ['email' => $user->email]); + + Notification::assertSentTo($user, ResetPassword::class, function ($notification) use ($user) { + $response = $this->post('/reset-password', [ + 'token' => $notification->token, + 'email' => $user->email, + 'password' => 'password', + 'password_confirmation' => 'password', + ]); + + $response + ->assertSessionHasNoErrors() + ->assertRedirect(route('login')); + + return true; + }); + } +} diff --git a/dashboard/tests/Feature/Auth/PasswordUpdateTest.php b/dashboard/tests/Feature/Auth/PasswordUpdateTest.php new file mode 100644 index 0000000..ca28c6c --- /dev/null +++ b/dashboard/tests/Feature/Auth/PasswordUpdateTest.php @@ -0,0 +1,51 @@ +create(); + + $response = $this + ->actingAs($user) + ->from('/profile') + ->put('/password', [ + 'current_password' => 'password', + 'password' => 'new-password', + 'password_confirmation' => 'new-password', + ]); + + $response + ->assertSessionHasNoErrors() + ->assertRedirect('/profile'); + + $this->assertTrue(Hash::check('new-password', $user->refresh()->password)); + } + + public function test_correct_password_must_be_provided_to_update_password(): void + { + $user = User::factory()->create(); + + $response = $this + ->actingAs($user) + ->from('/profile') + ->put('/password', [ + 'current_password' => 'wrong-password', + 'password' => 'new-password', + 'password_confirmation' => 'new-password', + ]); + + $response + ->assertSessionHasErrorsIn('updatePassword', 'current_password') + ->assertRedirect('/profile'); + } +} diff --git a/dashboard/tests/Feature/Auth/RegistrationTest.php b/dashboard/tests/Feature/Auth/RegistrationTest.php new file mode 100644 index 0000000..1489d0e --- /dev/null +++ b/dashboard/tests/Feature/Auth/RegistrationTest.php @@ -0,0 +1,31 @@ +get('/register'); + + $response->assertStatus(200); + } + + public function test_new_users_can_register(): void + { + $response = $this->post('/register', [ + 'name' => 'Test User', + 'email' => 'test@example.com', + 'password' => 'password', + 'password_confirmation' => 'password', + ]); + + $this->assertAuthenticated(); + $response->assertRedirect(route('dashboard', absolute: false)); + } +} diff --git a/dashboard/tests/Feature/ExampleTest.php b/dashboard/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..8364a84 --- /dev/null +++ b/dashboard/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/dashboard/tests/Feature/ProfileTest.php b/dashboard/tests/Feature/ProfileTest.php new file mode 100644 index 0000000..252fdcc --- /dev/null +++ b/dashboard/tests/Feature/ProfileTest.php @@ -0,0 +1,99 @@ +create(); + + $response = $this + ->actingAs($user) + ->get('/profile'); + + $response->assertOk(); + } + + public function test_profile_information_can_be_updated(): void + { + $user = User::factory()->create(); + + $response = $this + ->actingAs($user) + ->patch('/profile', [ + 'name' => 'Test User', + 'email' => 'test@example.com', + ]); + + $response + ->assertSessionHasNoErrors() + ->assertRedirect('/profile'); + + $user->refresh(); + + $this->assertSame('Test User', $user->name); + $this->assertSame('test@example.com', $user->email); + $this->assertNull($user->email_verified_at); + } + + public function test_email_verification_status_is_unchanged_when_the_email_address_is_unchanged(): void + { + $user = User::factory()->create(); + + $response = $this + ->actingAs($user) + ->patch('/profile', [ + 'name' => 'Test User', + 'email' => $user->email, + ]); + + $response + ->assertSessionHasNoErrors() + ->assertRedirect('/profile'); + + $this->assertNotNull($user->refresh()->email_verified_at); + } + + public function test_user_can_delete_their_account(): void + { + $user = User::factory()->create(); + + $response = $this + ->actingAs($user) + ->delete('/profile', [ + 'password' => 'password', + ]); + + $response + ->assertSessionHasNoErrors() + ->assertRedirect('/'); + + $this->assertGuest(); + $this->assertNull($user->fresh()); + } + + public function test_correct_password_must_be_provided_to_delete_account(): void + { + $user = User::factory()->create(); + + $response = $this + ->actingAs($user) + ->from('/profile') + ->delete('/profile', [ + 'password' => 'wrong-password', + ]); + + $response + ->assertSessionHasErrorsIn('userDeletion', 'password') + ->assertRedirect('/profile'); + + $this->assertNotNull($user->fresh()); + } +} diff --git a/dashboard/tests/TestCase.php b/dashboard/tests/TestCase.php new file mode 100644 index 0000000..fe1ffc2 --- /dev/null +++ b/dashboard/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/dashboard/vite.config.js b/dashboard/vite.config.js new file mode 100644 index 0000000..421b569 --- /dev/null +++ b/dashboard/vite.config.js @@ -0,0 +1,11 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + ], +}); diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..42c75d5 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,68 @@ +services: + app: + build: + context: . + dockerfile: Dockerfile + container_name: dashboard_app + restart: unless-stopped + working_dir: /var/www + volumes: + - ./dashboard:/var/www + depends_on: + - mysql + networks: + - dashboard + + nginx: + image: nginx:alpine + container_name: dashboard_nginx + restart: unless-stopped + ports: + - "8000:80" + volumes: + - ./dashboard:/var/www + - ./nginx.conf:/etc/nginx/conf.d/default.conf + depends_on: + - app + networks: + - dashboard + + mysql: + image: mysql:8.0 + container_name: dashboard_mysql + restart: unless-stopped + environment: + MYSQL_DATABASE: dashboard + MYSQL_ROOT_PASSWORD: root + MYSQL_USER: laravel + MYSQL_PASSWORD: secret + ports: + - "3308:3306" + volumes: + - dbdata:/var/lib/mysql + - ./docker/mysql/init.sql:/docker-entrypoint-initdb.d/dashboard.sql + networks: + - dashboard + + phpmyadmin: + image: phpmyadmin/phpmyadmin + container_name: dashboard_pma + restart: unless-stopped + depends_on: + - mysql + ports: + - "8083:80" + environment: + PMA_HOST: mysql + PMA_PORT: 3306 + PMA_USER: laravel + PMA_PASSWORD: secret + networks: + - dashboard + +networks: + dashboard: + + +volumes: + dbdata: diff --git a/e exec app composer dump-autoloaddocker compose exec app composer dump-autoload b/e exec app composer dump-autoloaddocker compose exec app composer dump-autoload new file mode 100644 index 0000000..711bf20 --- /dev/null +++ b/e exec app composer dump-autoloaddocker compose exec app composer dump-autoload @@ -0,0 +1,597 @@ +diff --git a/Dockerfile b/Dockerfile +index af83013..b506a23 100644 +--- a/Dockerfile ++++ b/Dockerfile +@@ -14,6 +14,7 @@ RUN apt-get update && apt-get install -y \ +  + # PHP Extensions + RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd ++RUN chown -R www-data:www-data /var/www/storage /var/www/bootstrap/cache  +  + # Install Composer + COPY --from=composer:latest /usr/bin/composer /usr/bin/composer +diff --git a/dashboard/bootstrap/app.php b/dashboard/bootstrap/app.php +index c3928c5..9f5e292 100644 +--- a/dashboard/bootstrap/app.php ++++ b/dashboard/bootstrap/app.php +@@ -6,13 +6,15 @@ +  + return Application::configure(basePath: dirname(__DIR__)) + ->withRouting( +- web: __DIR__.'/../routes/web.php', +- api: __DIR__.'/../routes/api.php', +- commands: __DIR__.'/../routes/console.php', ++ web: __DIR__ . '/../routes/web.php', ++ api: __DIR__ . '/../routes/api.php', ++ commands: __DIR__ . '/../routes/console.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware): void { +- // ++ $middleware->alias([ ++ 'role' => \App\Http\Middleware\RoleMiddleware::class, ++ ]); + }) + ->withExceptions(function (Exceptions $exceptions): void { + // +diff --git a/dashboard/composer.json b/dashboard/composer.json +index 52a3a8a..aad37ad 100644 +--- a/dashboard/composer.json ++++ b/dashboard/composer.json +@@ -12,6 +12,7 @@ + }, + "require-dev": { + "fakerphp/faker": "^1.23", ++ "laravel/breeze": "^2.4", + "laravel/pail": "^1.2.2", + "laravel/pint": "^1.24", + "laravel/sail": "^1.41", +diff --git a/dashboard/composer.lock b/dashboard/composer.lock +index 7ba63ad..23b4e2e 100644 +--- a/dashboard/composer.lock ++++ b/dashboard/composer.lock +@@ -4,7 +4,7 @@ + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], +- "content-hash": "c514d8f7b9fc5970bdd94287905ef584", ++ "content-hash": "18c3a10710e6e4641721ddfbd649de8d", + "packages": [ + { + "name": "brick/math", +@@ -6195,6 +6195,67 @@ + }, + "time": "2025-04-30T06:54:44+00:00" + }, ++ { ++ "name": "laravel/breeze", ++ "version": "v2.4.1", ++ "source": { ++ "type": "git", ++ "url": "https://github.com/laravel/breeze.git", ++ "reference": "28cefeaf6af20177ddf5cc7b93e87e4ad79d533f" ++ }, ++ "dist": { ++ "type": "zip", ++ "url": "https://api.github.com/repos/laravel/breeze/zipball/28cefeaf6af20177ddf5cc7b93e87e4ad79d533f", ++ "reference": "28cefeaf6af20177ddf5cc7b93e87e4ad79d533f", ++ "shasum": "" ++ }, ++ "require": { ++ "illuminate/console": "^11.0|^12.0|^13.0", ++ "illuminate/filesystem": "^11.0|^12.0|^13.0", ++ "illuminate/support": "^11.0|^12.0|^13.0", ++ "illuminate/validation": "^11.0|^12.0|^13.0", ++ "php": "^8.2.0", ++ "symfony/console": "^7.0|^8.0" ++ }, ++ "require-dev": { ++ "laravel/framework": "^11.0|^12.0|^13.0", ++ "orchestra/testbench-core": "^9.0|^10.0|^11.0", ++ "phpstan/phpstan": "^2.0" ++ }, ++ "type": "library", ++ "extra": { ++ "laravel": { ++ "providers": [ ++ "Laravel\\Breeze\\BreezeServiceProvider" ++ ] ++ } ++ }, ++ "autoload": { ++ "psr-4": { ++ "Laravel\\Breeze\\": "src/" ++ } ++ }, ++ "notification-url": "https://packagist.org/downloads/", ++ "license": [ ++ "MIT" ++ ], ++ "authors": [ ++ { ++ "name": "Taylor Otwell", ++ "email": "taylor@laravel.com" ++ } ++ ], ++ "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.", ++ "keywords": [ ++ "auth", ++ "laravel" ++ ], ++ "support": { ++ "issues": "https://github.com/laravel/breeze/issues", ++ "source": "https://github.com/laravel/breeze" ++ }, ++ "time": "2026-03-10T19:59:01+00:00" ++ }, + { + "name": "laravel/pail", + "version": "v1.2.6", +diff --git a/dashboard/package.json b/dashboard/package.json +index 7686b29..2ea7e1d 100644 +--- a/dashboard/package.json ++++ b/dashboard/package.json +@@ -7,11 +7,15 @@ + "dev": "vite" + }, + "devDependencies": { ++ "@tailwindcss/forms": "^0.5.2", + "@tailwindcss/vite": "^4.0.0", ++ "alpinejs": "^3.4.2", ++ "autoprefixer": "^10.4.2", + "axios": "^1.11.0", + "concurrently": "^9.0.1", + "laravel-vite-plugin": "^2.0.0", +- "tailwindcss": "^4.0.0", ++ "postcss": "^8.4.31", ++ "tailwindcss": "^3.1.0", + "vite": "^7.0.7" + } + } +diff --git a/dashboard/resources/css/app.css b/dashboard/resources/css/app.css +index 3e6abea..b5c61c9 100644 +--- a/dashboard/resources/css/app.css ++++ b/dashboard/resources/css/app.css +@@ -1,11 +1,3 @@ +-@import 'tailwindcss'; +- +-@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php'; +-@source '../../storage/framework/views/*.php'; +-@source '../**/*.blade.php'; +-@source '../**/*.js'; +- +-@theme { +- --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', +- 'Segoe UI Symbol', 'Noto Color Emoji'; +-} ++@tailwind base; ++@tailwind components; ++@tailwind utilities; +diff --git a/dashboard/resources/js/app.js b/dashboard/resources/js/app.js +index e59d6a0..a8093be 100644 +--- a/dashboard/resources/js/app.js ++++ b/dashboard/resources/js/app.js +@@ -1 +1,7 @@ + import './bootstrap'; ++ ++import Alpine from 'alpinejs'; ++ ++window.Alpine = Alpine; ++ ++Alpine.start(); +diff --git a/dashboard/resources/views/layouts/app.blade.php b/dashboard/resources/views/layouts/app.blade.php +index e086ead..0a471a4 100644 +--- a/dashboard/resources/views/layouts/app.blade.php ++++ b/dashboard/resources/views/layouts/app.blade.php +@@ -1,305 +1,36 @@ +  +- +- +- +- NRML Dashboard +-  +- +-  +-  +-  +-  +-  +-  +- +-  +-  +- +-  +-  +-  +- +-  +- +- +- +- +-
     +-
     +- National Reference Medical Laboratory Surveillance Dashboard +-
     +-
     +- Last update: 12:05 | 2026-03-15 +-
     +-
     +- +-